gpt4 book ai didi

javascript - 在 iOS 中更改 JavaScript 警报对话框标题

转载 作者:IT王子 更新时间:2023-10-29 03:13:09 26 4
gpt4 key购买 nike

是否可以在 iPhone 的 UIWebview 中更改 JavaScript 警报标题?

最佳答案

基本上你不能更改标题,但最近我找到了一种显示没有标题的警告对话框的方法。

var iframe = document.createElement("IFRAME");
iframe.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe);
window.frames[0].window.alert('hello');
iframe.parentNode.removeChild(iframe);

关于javascript - 在 iOS 中更改 JavaScript 警报对话框标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10681381/

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