Cordova iOS应用程序将html页面名称显示为警报时的标题

时间:2017-04-13 09:49:20

标签: ios cordova cross-platform

Cordova iOS应用程序显示HTML文件名作为警报的标题。我使用以下代码显示警报:

alert('This is alert.');

我想从警告框中删除HTML页面名称。

2 个答案:

答案 0 :(得分:2)

您可以安装cordova对话框插件

cordova plugin add cordova-plugin-dialogs

样本用法:

function alertDismissed() {
    // do something
}

navigator.notification.alert(
    'You are the winner!',  // message
    alertDismissed,         // callback
    'Game Over',            // title
    'Done'                  // buttonName
);

参考:https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-dialogs/

答案 1 :(得分:1)

为此,您需要使用Cordova对话框插件。

此处的文档:

https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-dialogs/