JQueryMobile - 按钮
如何使用 jquery mobile 禁用编码中的按钮?
<div data-role="button" id="val">Value</div>
[注意:我想在编码中禁用该按钮,而不是在设计时]
How to disable the button in coding using jquery mobile?
<div data-role="button" id="val">Value</div>
[Note : I want to disable the button in the coding, not in the design time]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
实例:http://jsfiddle.net/LHG4L/5/
HTML:
JS:
更新:
链接按钮示例:
JS
HTML
注意: - http://jquerymobile.com/demos/1.0rc2/docs/buttons/buttons -types.html
Live Example: http://jsfiddle.net/LHG4L/5/
HTML:
JS:
UPDATE:
Link button example:
JS
HTML
NOTE: - http://jquerymobile.com/demos/1.0rc2/docs/buttons/buttons-types.html
您可以并且应该使用 jquery 和 jquerymobile 禁用它:
You can and should disable it using both jquery and jquerymobile:
您可以使用属性
class="ui-disabled"
禁用按钮,如下所示:You can disable button using the attribute
class="ui-disabled"
as follows: