function $(o) { return document.getElementById(o) } $('test').onblur = function() { debugger; var re = /^\d+(\.\d)?$/; var bol = re.test(this.value); if (bol == true) { } else { alert("123"); } } 他是空也是flase...直接弹出123...能不能在他是数字和小数和空的情况下是true.....谢谢了
2 回答
慕姐8265434
TA贡献1813条经验 获得超2个赞
function $(o) { return document.getElementById(o) } $('test').onblur = function() { debugger; var re = /^\d+(\.\d)?$/; var bol = re.test(this.value); if (bol == true) { } else if(this.value !== ""){ alert("123"); } }
加了一个为空的判断
- 2 回答
- 0 关注
- 726 浏览
添加回答
举报
0/150
提交
取消