本文介绍了这个Javascript代码在mozilla firefox中不起作用?请帮我的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 function numericValidation(txtvalue) { var e = event || evt; // for trans-browser compatibility var charCode = e.which || e.keyCode; if (!(document.getElementById(txtvalue.id).value)) { if (charCode > 31 && (charCode < 48 || charCode > 57)) return false; return true; } else { var val = document.getElementById(txtvalue.id).value; if (charCode == 46 || (charCode > 31 && (charCode > 47 && charCode < 58))) { var points = 0; points = val.indexOf(".", points); if (points >= 1 && charCode == 46) { return false; } if (points >= 1) { var lastdigits = val.substring(val.indexOf(".") + 1, val.length); if (lastdigits.length >= 2) { alert("Two decimal places only allowed"); return false; } } return true; } else { alert("Only Numarics allowed"); return false; } } } 推荐答案 更多信息: http://stackoverflow.com/questions/891696/jquery-what-is-the-best-way-到限制-数仅输入换文本框,所有 [ ^ ] 我希望这会对你有所帮助。More info :http://stackoverflow.com/questions/891696/jquery-what-is-the-best-way-to-restrict-number-only-input-for-textboxes-all[^]I hope this will help to you. 这篇关于这个Javascript代码在mozilla firefox中不起作用?请帮我的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-22 01:21