gpt4 book ai didi

javascript - 使用 PhoneGap HTML 在 iOS 中自定义 JavaScript 警报

转载 作者:技术小花猫 更新时间:2023-10-29 10:42:32 26 4
gpt4 key购买 nike

我的应用程序有几个 JS 警报,它似乎总是显示页面名称。

index.html

有没有办法将 index.html 更改为我的应用程序名称或自定义文本。

例子:

My App // Which replaces .index.html
alert("I am an alert box!");

最佳答案

为了能够在桌面浏览器和 PhoneGap 应用程序上进行测试,我建议使用这样的动态方法:

function showMessage(message, callback, title, buttonName) {

title = title || "default title";
buttonName = buttonName || 'OK';

if(navigator.notification && navigator.notification.alert) {

navigator.notification.alert(
message, // message
callback, // callback
title, // title
buttonName // buttonName
);

} else {

alert(message);
callback();
}

}

关于javascript - 使用 PhoneGap HTML 在 iOS 中自定义 JavaScript 警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9432615/

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