我根据以下针对警报问题的建议在我的网络应用程序中添加了自定义警报。它在iOS7设备中运行良好,但在iOS8设备上,它以粗体显示消息。
是否可以显示没有BOLD的消息字体?
请参阅随附的屏幕截图供您参考。
Change JavaScript alert dialog title in iOS
代码段:
function alert2(words){
var iframe = document.createElement("IFRAME");
iframe.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe);
window.frames[0].window.alert(words);
iframe.parentNode.removeChild(iframe);
}
function takePicture() {
alert2("Testing custom alert");
}
答案 0 :(得分:-2)
不,你不能依赖它的操作系统或浏览器,但你可以制作自己的弹出框也很容易