shanhuijava 2012-10-18
jquery清空表单数据 (包括文本框,多文本框,和复选框)
//这样写不行,会把按钮和其它传的值给去掉
function clearFormValue(){
$("input").attr("value","");
$("input").attr("checked",false);
$("textarea").attr("value","");
}
//正确方法
function clearFormValue(){
$("input[type=text]").attr("value","");
$("input[type=checkbox]").attr("checked",false);
$("textarea").attr("value","");
}
<table id="table" class="table table-striped table-bordered table-hover table-nowrap" width="100%&qu