摘要:
1.textarea内容为val(); 2.全选/全取消: $(":checkbox").attr("checked",true); $(":checkbox").attr("checked",false); 阅读全文
摘要:
//只能输入数字,没有小数点onkeyup="this.value=this.value.replace(/\D/g,'')" js中:onkeyup='this.value=this.value.replace(/[^\\d]/g,"")' //只能输入数字,有小数点onkeyup="this.v 阅读全文