我需要一個簡單的代碼以禁用的按鈕形式發送到下列條件:如果輸入類型文本爲空,禁用按鈕類型發送與jQuery?
如果所選<input type="radio">
ID爲「#radio_one」,然後檢查僅僅一個<input type="text">
ID爲「#text_one」。
OR
如果所選<input type="radio">
ID爲 「#radio_two」,然後檢查兩個<input type="text">
ID爲 「#text_one」 並且還與ID 「#text_two」。
而且,如果提供一個或兩個<input type="text">
將爲空,則爲按鈕添加<input type="send">
屬性disabled =「disabled」,但是,如果將再次填充此屬性,則會從該按鈕中刪除。
對不起,我的英語,我用谷歌翻譯:(
我沒有其他的代碼,我希望你能理解我,所以我創造了一些簡單的jQuery代碼,然後可以可能編輯
感謝
。編輯:這不工作:
$("#send_button").attr("disabled", "disabled");
if ($('#absence_one').checked && $('#cal_from').val().length > 0) {
$("#send_button").removeAttr("disabled");
}
if ($('#absence_more').checked && $('#cal_to').val().length > 0) {
$("#send_button").removeAttr("disabled");
}
這就是它,它完美的工作。謝謝 – Edoras 2012-02-17 17:31:26