jQuery 选择器:通过 ID 寻址提交按钮失败
给定一个提交按钮:
<input type="submit" value="Sign Up" name="AddToCart" size="2" id="AddToCart" />
为什么此代码不禁用该按钮:
$('#AddToCart').attr(disabled, 'disabled');
mny thx
Given a submit button:
<input type="submit" value="Sign Up" name="AddToCart" size="2" id="AddToCart" />
why wouldn't this code disable the button:
$('#AddToCart').attr(disabled, 'disabled');
mny thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
传递给
.attr()
的属性名称需要用引号引起来,像这样:还要确保它在
document.ready
事件处理程序中运行,或者在元素准备好后的其他地方运行,例如:The attribute name passed to
.attr()
needs to be in quotes, like this:Also make sure this is running in a
document.ready
event handler, or somewhere else after the element is ready, e.g.: