使用jquery清空、复位整个输入域
时间:2021-05-23 08:07:43|栏目:jquery|点击: 次
在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输入框。
栏 目:jquery
下一篇:jQuery实现“扫码阅读”功能
本文标题:使用jquery清空、复位整个输入域
本文地址:http://www.codeinn.net/misctech/127349.html