龙空技术网

网页前端清空按钮jQuery 代码

洞悉科学 150

前言:

此时各位老铁们对“jsinput清空”大致比较注重,姐妹们都需要知道一些“jsinput清空”的相关文章。那么小编也在网摘上汇集了一些关于“jsinput清空””的相关文章,希望朋友们能喜欢,咱们快快来了解一下吧!

一、引用jQuery 库

<head><script src="jquery-1.10.2.min.js"></script></head>
二、单击按钮时触发onclick事件
<button type="button" onclick="formReset()">清空</button>
三、jQuery函数
<script type="text/javascript">	 function formReset() {		 $(':input', '#txlSearch')		 .not(':button, :submit, :reset, :hidden')		 .val('')		 .removeAttr('checked')		 .removeAttr('selected');		 $("#jg").hide();	}</script>

标签: #jsinput清空 #jquery输入框的值清空