gpt4 book ai didi

javascript - 如何使用cordova从IOS应用程序的确认框中删除标题 "confirm"?

转载 作者:行者123 更新时间:2023-11-28 04:56:31 28 4
gpt4 key购买 nike

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

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

最佳答案

不要使用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
);

关于javascript - 如何使用cordova从IOS应用程序的确认框中删除标题 "confirm"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42506734/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com