Commit 6a295119 authored by 徐州's avatar 徐州

Merge branch 'master' of http://gitlab.house365.com/xuzhou/njzsb

* 'master' of http://gitlab.house365.com/xuzhou/njzsb:
  ie失去焦点没有
parents 89ec7741 0894c27d
...@@ -393,7 +393,7 @@ ...@@ -393,7 +393,7 @@
var num = Number($(this).val()) var num = Number($(this).val())
if($(this).val()==''){ if($(this).val()==''){
$.messager.alert('提示', '请输入应缴金额!'); $.messager.alert('提示', '请输入应缴金额!');
}else if (Number.isNaN(num)) { }else if (typeof(num) === 'number' && isNaN(num)) {
$.messager.alert('提示', '请输入正确的数字!'); $.messager.alert('提示', '请输入正确的数字!');
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment