在web開發中,我們經常會遇到重置所有輸入框的情況。
比如在查詢時,會給用戶提供一個“重置”按鈕來清空所有輸入框內的輸入的文本。
這時使用jquery就可以統一清空(復位)。
// 復位查詢條件輸入域 function restInputArea(div_id){ // 清空文本框 $("#"+div_id).find('input[type="text"]').each(function(){ $(this).val(""); }); // 復位下拉菜單 $("#"+div_id).find('select').each(function(){ $(this).find('option:first-child').attr('selected',"selected"); }); };
上述代碼使用了jquery選擇器取得了整個輸入框的父級元素,並使用find找到該元素下的所有input與select輸入框。