使用 JQuery 禁用 JQuery Mobile 按钮
这是我的 JQuery 移动按钮。这可能是一件容易的事。我能够禁用 html 按钮,但我似乎无法通过此标记获得它。
<a href="" data-role="button" class="answer_but" id="a" data-theme="b" data-answer="1">
这可能是一件容易的事。谢谢
this is my JQuery mobile button. This is probably an easy one. Im able to disable a html button but i cant seem to get it with this mark up.
<a href="" data-role="button" class="answer_but" id="a" data-theme="b" data-answer="1">
This is probably an easy one. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
禁用 jQuery Mobile 中的按钮
实例:http://jsfiddle.net/XRjh2/16/
更新:
链接按钮示例:
JS
HTML
注意: - http://jquerymobile.com/demos/1.0rc2/docs/buttons/buttons-types.html
Disable Buttons in jQuery Mobile
Live Example: http://jsfiddle.net/XRjh2/16/
UPDATE:
Link button example:
JS
HTML
NOTE: - http://jquerymobile.com/demos/1.0rc2/docs/buttons/buttons-types.html
您只需将几乎所有元素或按钮的类设置为“ui-disabled”即可禁用它。
You can just set the class to "ui-disabled" for almost any element or button to disable it.
嗯 - 试试这个(假设 'a' 是你的 jqm 按钮的 id):
Hmmm - Try this (assuming 'a' is the id of your jqm button):
所以我查看了这个,但也无法让它工作。然后一位同事建议将 live 添加到 vclick,现在它可以工作了。
So I looked over this and couldn't get this to work either. Then a coworker suggested adding live to a vclick and now it works.