1.文本框,文本区域 $("#txt").attr("value",'');//清空内容 $("#txt").attr("value",'11');//填充内容
2.多选框checkbox
$("#chk1").attr("checked",'');//不打勾
$("#chk2").attr("checked",true);//打勾
if($("#chk1").attr('checked')==undefined) //判断是否已经打勾
1.文本框,文本区域 $("#txt").attr("value",'');//清空内容 $("#txt").attr("value",'11');//填充内容
2.多选框checkbox
$("#chk1").attr("checked",'');//不打勾
$("#chk2").attr("checked",true);//打勾
if($("#chk1").attr('checked')==undefined) //判断是否已经打勾