我有一個「保存設置」按鈕,其類型爲'圖像'。 我想一個複選框被用戶 我米使用檢查後,才啓用..使用jQuery啓用基於條件的按鈕
$('#btnSaveProfile').attr("disabled",true);
$('#btnSaveProfile').click(function(){
if ($("#rdAccept").is(':checked'))
{
$('#btnSaveProfile').attr("disabled",false);
updateProfile();// calling a function here that saves data.
}
});
這是不行的,任何輸入....請
但是,當複選框被選中時,這將調用'updateProfile()',而不是單擊(啓用)按鈕時。 – jensgram 2011-03-24 10:02:25
@jensgram - 同意雖然這不是他的主要問題在這裏!更改 – redsquare 2011-03-24 10:03:08
不,但我想這是OP的意圖:)好吧,編輯似乎很完美。 – jensgram 2011-03-24 10:05:10