Jquery 禁用表单按钮,直到单击非表单元素
我有一个简单的列表,未包含在表单和表单中。
我想要做什么:我希望仅当有人单击该列表的一个元素时才启用表单的提交按钮。 使用 jquery 可以吗?
谢谢你!
i have a simple list, that is not included in a form, and a form.
What i want to do: i want that the submit button of the form to be enabled only when someone clicks on one element of that list.
Is this possible using jquery?
thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以这样做
HTML
JavaScript
演示:
http://jsfiddle.net/ynhat/r6nUD/
You can do like this
HTML
Javascript
Demo:
http://jsfiddle.net/ynhat/r6nUD/
这有效
this works
最初将按钮设置为禁用(例如,直接在 HTML 中添加
disabled="disabled"
),并为列表的单击事件定义适当的操作:Set the button to disabled initially (e.g. by adding
disabled="disabled"
directly in the HTML) and define appropriate action for click event of your list:试试这个。这里我使用了示例 HTML。
HTML:
JQUERY:
Try this. Here I used sample HTML.
HTML:
JQUERY: