我正在創建一個小部件,並在按鈕上單擊我想禁用小部件。UI小部件禁用
(function ($) {
$.widget("df.txt", { })
})(jQuery);
$(document).ready(function() {
//register input widgets
$("input").txt({ disabled: true });
//Register button to disable/enable inputs
$("button").click(function() {
//$("input").txt("disable");
$("input").txt("option", "disabled", true);
});
});
我使用這個link作爲參考。
這不起作用,有幫助嗎?
@mandava您是否嘗試過我的代碼 – PSR 2013-03-19 10:26:22
我認爲這是行不通的。也許他試圖做同樣的事情,在這個例子:http://jqueryui.com/widget/ 但我不知道這是什麼txt()函數。 – imclickingmaniac 2013-03-19 10:29:41
txt不是一個函數,它是一個小部件 – mandava 2013-03-19 10:41:48