DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> 使用jquery清空、復位整個輸入域
使用jquery清空、復位整個輸入域
編輯:JavaScript綜合知識     

 在web開發中,我們經常會遇到重置所有輸入框的情況。

比如在查詢時,會給用戶提供一個“重置”按鈕來清空所有輸入框內的輸入的文本。
這時使用jquery就可以統一清空(復位)。

1 2 3 4 5 6 7 8 9 10 11 // 復位查詢條件輸入域 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輸入框。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved