gpt4 book ai didi

jquery - 如何用jquery禁用提交按钮

转载 作者:行者123 更新时间:2023-12-03 21:30:04 25 4
gpt4 key购买 nike

我有一个简单的表单来检查用户根据变量输入的邮政编码的值,

我正在尝试禁用提交按钮并进行检查并发出警报消息,我无法弄清楚我做错了什么,任何帮助将不胜感激。

  <form id="post_code">
<input name="textfield" type="text" id="postcode" size="14" maxlength="8" />
<input type="image" id="submit_postcode" src="images/B_go.png" alt="Submit Postcode" width="59" height="24" border="0" />
</form>


$(function() {

$('form#post_code').submit(function() {

var entered_post_code = $('form#post_code input#postcode').val();
var post_code = "CV";
if (entered_post_code == post_code) {
alert("post code is ok");
return true;
}else {
alert("post code is not ok");
return true;
}
return false;
});

});

最佳答案

W3C 建议将该属性设置为disabled="disabled",因此:

$('#submit_postcode').attr('disabled', 'disabled');

可以通过删除属性来重新启用:

$('#submit_postcode').removeAttr('disabled');

将属性设置为任何值都会导致其被禁用,甚至 .attr('disabled', 'false'),因此必须将其删除。

关于jquery - 如何用jquery禁用提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1237896/

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