gpt4 book ai didi

jquery - 将 onsubmit 替换为 jquery

转载 作者:行者123 更新时间:2023-12-01 00:38:17 25 4
gpt4 key购买 nike

我有以下代码:

<form name="submissions" action="/" onsubmit="window.open('', 'foo', 'width=900,height=900,status=yes,resizable=yes,scrollbars=yes')" target="foo" method="post">
.......
<input type="submit" id="printbtn" name="printbtn" value="Print" />
<input type="submit" id="editbtn" name="editbtn" value="Edit" />
</form>

* 已编辑 *

window.open 应该仅在单击“打印”按钮时发生。我想删除 onsubmit() 事件并使用 jQuery 来完成。我该怎么做?

最佳答案

这行得通吗?

$('form[name="submissions"]').submit(function(event){
event.preventDefault();
// Do other stuff
});

更新:实际上,尝试一下......

$(function(){
$('form[name="submissions"]').removeAttr('onsubmit')
.submit(function(event){
event.preventDefault();
// This cancels the event...
});
// This should fire your window opener...
$('#printbtn').click(function(){
window.open('', 'foo', 'width=900,height=900,status=yes,resizable=yes,scrollbars=yes');
})

});

应该删除 onsubmit,并阻止表单提交...

关于jquery - 将 onsubmit 替换为 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9441531/

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