class="Short"を持つすべてのjqueryボタンのボタンラベルを表示するコードを書いています
私は次のコードを使用しています:-
$('.Short').button();
var all_short_btns = $(".Short");
for(i=0; i< all_short_btns.length; i++){
alert(all_short_btns[i].button( "option", "label" ));
}
HTMLは次のとおりです。
<button class="Short">Label1</button>
<button class="Short">Label2</button>
<button class="Short">Label3</button>
<button class="Short">Label4</button>
<button class="Short">Label5</button>
<button class="Short">Label6</button>
エラーが発生しています:
Uncaught TypeError:オブジェクト#にメソッド「ボタン」がありません
私の質問は、各ボタン要素のラベルを取得する方法ですか?
前もって感謝します。