0
我是JQuery的新手。我想在我的腳本中添加條件語句,但我不確定按鈕效果的語法。我wan't它沿jQuery中的按鈕狀態的條件語句?
線,如果「.save」 = .show然後.hide「.donedit」
這個腳本是表,我不希望用戶能夠如果他們編輯了一個字段而不保存內容,點擊.donedit按鈕。
現在.save按鈕僅在用戶編輯字段時才顯示,如果顯示.save按鈕,理想的功能是灰顯或隱藏donedit按鈕。
這裏的相關部分:
$(document).ready(function(){
//individual field edit buttons show as hidden
$(".edit").hide();
$(".donedit").hide();
//when the mass edit button is clicked in the header, the edit button
//will show for each field, the massedit button will hide showing the donedit button
$(".massedit").click(function(){
$(".edit").show();
$(".massedit").hide();
$(".donedit").show();
});
//When the donedit button is clicked the massedit button shows and the
// donedit button disappears
$(".donedit").click(function(){
$(".edit").hide();
$(".massedit").show();
$(".donedit").hide();
});
});
表現出一定的HTML兄弟 –