js问题总结
<input type="radio" value="0" name="type" checked="checked">个人 <input type="radio" value="1" name="type">单位 获取值的方式:$('input:radio[name="type"]:checked').val(); js验证只能输入0和1 let reg = /^(0{1})(\.\d{1,2})?$/; if (!reg.test(param.proportion)) { alert('比例范围0~1并小数点后不能超过两位'); return } //去掉所有空格 function getClearBlank(str){ return str.replace(/\s+/g,""); }