我不知道JS。但是我的Ruby中需要一行代碼。我有以下html
。如何使用JavaScript將'aria-disabled`設置爲true
<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
<div class="ui-dialog-buttonset">
<button class="otherButtonClass ui-state-hover ui-state-focus" type="button" role="button" aria-disabled="false">
<button class="otherButtonClass" type="button" role="button" aria-disabled="false" style="display: none;">
<button class="cancelButtonClass" type="button" role="button" aria-disabled="false">
</div>
</div>
我想要JS代碼,使第一個和第二個按鈕,使他們可見。代碼是什麼?
請幫忙。
您是否使用jQueryUI的的按鈕?然後它只是'$(「。otherButtonClass」)。show()。button(「enable」);' – Bergi
@Bergi你有看到jQuery標籤嗎? – jQuery00
@ jQuery00:不,但很多類似jQueryUI的類。這就是我問的原因。 – Bergi