我有一个简单的表单,在按下数字时执行计算,但这只应在输入数字时发生,如果添加了一个字母,我希望显示通知。有这么简单的功能吗?
表格
<input onKeyPress="return onlyNumbers()" onKeyUp="calc()" id="value1" type="text" name="value1">
<select onChange="calc()" id="manipulator" name="manipulator">
<option value="commission">Commission</option>
<option value="cost">Return</option>
</select>
</form>
计算功能
function calc(){
if (window.XMLHttpRequest){// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else {// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
val1 = document.getElementById("value1").value;
mani = document.getElementById("manipulator").value;
if (val1 != ""){
document.getElementById("resp").innerHTML="Calculating...";
queryPath = "comCalcServ.php?value1="+val1+"&manipulator="+mani;
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById("resp").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET",queryPath);
xmlhttp.send();
}
}
我目前正在查看isNaN函数但不熟悉JS语法,因此不确定在何处使用它。
答案 0 :(得分:4)
你的意思是:
//add inside your calc function
val1 = document.getElementById("value1").value;
if(/^\d+$/.test(val1)) {
//proceed with rest of code
}
else {
alert("Invalid");
return false;
}
答案 1 :(得分:0)
试试这个简单的
if(val1.match(/^\d+$/)) {
// your code
}