我正在编写一段代码,它将显示所有具有 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>
我收到错误:
未捕获的类型错误:对象 # 没有方法“按钮”
我的问题是如何获取每个按钮元素的标签?
提前致谢。