Questions tagged «confirm»

17
如何显示“您确定要离开此页面吗?” 何时提交更改?
在stackoverflow中,如果您开始进行更改,然后尝试离开该页面,则会显示一个javascript确认按钮,并询问:“确定要离开此页面吗?” blee blah bloo ... 以前有人实施过此功能,如何跟踪所做的更改?我相信我自己可以做到,我正在尝试向您的专家学习良好做法。 我尝试了以下操作,但仍然无法正常工作: <html> <body> <p>Close the page to trigger the onunload event.</p> <script type="text/javascript"> var changes = false; window.onbeforeunload = function() { if (changes) { var message = "Are you sure you want to navigate away from this page?\n\nYou have started writing or editing a …

6
JavaScript表单提交-确认或取消提交对话框
对于带有警报的简单表单,询问是否正确填写了字段,我需要一个执行此操作的函数: 单击带有两个选项的按钮时显示警报框: 如果单击“确定”,则提交表单 如果单击“取消”,则警告框将关闭,并且可以调整并重新提交表单 我认为JavaScript确认会起作用,但我似乎不知道如何解决。 我现在拥有的代码是: function show_alert() { alert("xxxxxx"); } <form> <input type="image" src="xxx" border="0" name="submit" onclick="show_alert();" alt="PayPal - The safer, easier way to pay online!" value="Submit"> </form> 运行代码段隐藏结果展开摘要

9
Javascript确认弹出框是,否按钮,而不是确定和取消
Javascript确认弹出窗口,我想显示“是,否”按钮,而不是“确定”和“取消”。 我已经使用了以下vbscript代码: <script language="javascript"> function window.confirm(str) { execScript('n = msgbox("' + str + '","4132")', "vbscript"); return (n == 6); } </script> 这仅适用于IE,在FF和Chrome中,但无效。 是否有任何工作来实现此目的? 我也想更改弹出窗口的标题,就像在IE中显示“ Windows Internet Explorer”一样,我想在这里显示我自己的应用程序名称。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.