gpt4 book ai didi

javascript - 单击浏览器后退按钮时禁用页面上的提交按钮

转载 作者:行者123 更新时间:2023-12-03 08:27:38 34 4
gpt4 key购买 nike

当单击浏览器的后退按钮时,我需要禁用页面上的“提交”按钮。这应该是通用含义,在我放置此脚本的任何页面中,当用户点击浏览器后退按钮时,它应该禁用该页面上的所有提交按钮。

enter image description here

最佳答案

您应该能够使用 window.history.pushState 和 popstate 来实现这一点(请参见下面的示例)。有关兼容性,请参阅 this
有关完整文档,请参阅 this

jQuery(document).ready(function ($) {

if (window.history && window.history.pushState) {

window.history.pushState('forward', null, null);

$(window).on('popstate', function () {
//Add logic here
});

}
});

关于javascript - 单击浏览器后退按钮时禁用页面上的提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33484040/

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