[removed]不应该工作的时候刷新与点击的按钮的页面([removed] shouldnt wo

2019-10-19 05:15发布

我在我的页面注册表格。 所以我想,当用户不小心刷新或关闭选项卡或浏览器和访问者写在别人的东西

<input type="text" placeholder="something"/>

然后出现:

return "you have to fill the whole form";

一切正常,但我有一个问题按钮! 按钮没有JavascriptjQuery的任何功能。 我的PHP脚本检查所有这些投入并刷新页面。 参观者填满整个表格,然后点击注册和出现。

return "you have to fill the whole form";

这不应该是这样的,我不能共享,因为网页的安全性的PHP代码。

也许我可以解决这个问题有正确的JS或jQuery代码!

的jsfiddle演示 : http://jsfiddle.net/dV9sU/9/

PS:对不起,我的英语。

Answer 1:

这里: http://jsfiddle.net/dV9sU/11/

<input type="submit" name="sign_in" value="Registrieren" class="success_button" onclick="alert(onbeforeunload());" />


文章来源: window.onbeforeunload shouldnt work when refresh the page with clicked button