是否可以修改在JavaScript中打开confirm()函数的消息框的标题?
我可以创建一个模态弹出框,但我想尽可能简化.我想做这样的事情:
confirm("This is the content of the message box", "Modified title");
Internet Explorer中的默认标题是"Windows Internet Explorer",Firefox中的默认标题是"[JavaScript-program]".信息量不大.虽然我可以从浏览器安全角度了解您不应该这样做.
正如您所说,从安全角度来看,这是不可能的.您可以模拟它的唯一方法是创建一个无模式对话窗口.
您可以使用许多第三方javascript插件来伪造此效果,因此您不必编写所有代码.
是的,你可以做到!这有点棘手;)(几乎可以在ios上使用)
var iframe = document.createElement("IFRAME"); iframe.setAttribute("src", 'data:text/plain,'); document.documentElement.appendChild(iframe); if(window.frames[0].window.confirm("Are you sure?")){ // what to do if answer "YES" }else{ // what to do if answer "NO" }
好好享受!