gpt4 book ai didi

javascript - 提交后隐藏提交按钮?

转载 作者:行者123 更新时间:2023-11-28 21:22:52 26 4
gpt4 key购买 nike

提交后,我希望通过 jQuery 隐藏提交按钮。它隐藏了,但在页面重新加载后不久...为什么?

HTML:

<!DOCTYPE html>
<html>
<head>

<script src="js/submit_rsvp.js"></script>
<script src="js/jquery-1.2.3.pack.js"></script>
<script src="http://code.jquery.com/jquery-git.js"></script>

</head>
<body>

<form name="rsvp" method="post" action="" id='form'>
<input type='submit' name='submit' value='submit' id='submit' class='clickMe'>
</form>


</body>
</html>

JS:

$(document).ready(function() {
$(".clickMe").click(function() {
$("submit").hide();
});
});

谢谢!库尔顿

最佳答案

您的表单操作为空。因此,当您单击“提交”时,它只会使用当前页面作为操作。这就是它重新加载当前页面的原因。如果您不希望它提交表单,您可以执行以下操作:

$("#form").submit(function(e) {
e.preventDefault();
$("submit").hide();
});

关于javascript - 提交后隐藏提交按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5811031/

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