如何禁用Nativedroid中的按钮(v0.2.2)?

时间:2014-05-23 07:46:38

标签: html5 jquery-mobile nativedroid

未禁用从锚标记创建的按钮。我试过以下:

<li data-role="fieldcontain" id="listDownViewSubProject">
    <fieldset data-role="controlgroup">
         <legend style="text-transform:none;">SubProjects:</legend>
         <a href="#"  data-role="button" id='btnSubProject' class="ui-disabled" data-icon='circle-arrow-down' data-iconpos='right'   style="text-transform:none;" >Select the SubProject</a>
    </fieldset>
</li>

谢谢。

1 个答案:

答案 0 :(得分:0)

尝试disabled属性

<a href="#"  data-role="button" id='btnSubProject' data-icon='circle-arrow-down' data-iconpos='right'   style="text-transform:none;" disabled>Select the SubProject</a>