如何使用cordova从IOS应用程序中的确认框中删除标题“确认”?

时间:2017-02-28 10:51:34

标签: javascript cordova

我正在尝试从确认框中删除“确认”标题, 我在确认对话框中获取页面名称,这看起来很尴尬。

请帮我从确认对话框中删除标题。

1 个答案:

答案 0 :(得分:0)

不要使用window.confirm(),因为这会使用WebView的内置确认对话框,该对话框看起来不太优雅且标题不可自定义。

相反,请在项目中安装cordova-plugin-dialogs

cordova plugin add cordova-plugin-dialogs --save

然后,您可以使用自定义标题调用其confirm dialog API

function onConfirm(buttonIndex) {
    alert('You selected button ' + buttonIndex);
}

navigator.notification.confirm(
    'Your message',        // message
     onConfirm,            // callback to invoke with index of button pressed
    'Custom title',        // title
    ['Button1','Button2']  // button labels
);