1
我有一些按鈕集包含無線電輸入,並希望它們最初被禁用。jQuery UI buttonset禁用的構造函數選項不起作用
構建buttonset時傳遞禁用選項不起作用。
$("#a").buttonset({disabled: true});
$("#b").buttonset({disabled: true});
$("#c").buttonset({disabled: true});
$("#d").buttonset({disabled: true});
但是,調用按鈕禁用方法。
$("#a").buttonset("disable");
有誰知道爲什麼第一段代碼不起作用?
關於buttonset的文檔還不太清楚。 – Michael
是的,它沒有提到任何事情,但有一個技巧可以幫助你沒有任何文檔,只需安裝firebug和firefirey firefox插件,你會看到每個dom元素(標籤)中的所有jquery存儲數據, '標籤數據的'選項'屬性,你會知道所有可用的jQuery插件或插件的選項;) –