1 function getCoord() { 2 var x = document.getElementById(‘xTxt‘).value; 3 if(isEmptyOrSpaces(x)) { 4 alert(‘请输入x坐标‘); 5 return; 6 } 7 //值必须为数字. 8 if(isNaN(x)) { 9 alert(‘x值非法‘); 10 return; 11 } 12 13 var y = document.getElementById(‘yTxt‘).value; 14 if(isEmptyOrSpaces(y)) { 15 alert(‘请输入y坐标‘); 16 return; 17 } 18 if(isNaN(y)) { 19 alert(‘y值非法‘); 20 return; 21 } 22 } 23 24 //测试文本框值不能为空. 25 function isEmptyOrSpaces(val) { 26 return val == null || val.match(/^ *$/) !== null; 27 }
时间: 2024-10-07 11:14:26