(15年)1.对表单输入的数据进行校验,如果用户输入了纯数字,则通过,否则提示用户输入数据或更改数据,并终止提交,同时将光标定位于输入文本框
作者:互联网
<!DOCTYPE html>
<html>
<head>
<title>15</title>
<script type="text/javascript">
function judge(){
var value = document.getElementById('nn').value;
var tip = document.getElementById('hint');
var pos =/^[0-9]+$/ ;
if(!pos.test(value)){
//alert("输入错误");
tip.innerHTML = "输入错误";
document.getElementById("nn").value="";
document.myform.uname.focus();
}
}
</script>
</head>
<body>
<form name="myform">
输入:<input type="text" id="nn" name="uname" placeholder="只输入数字" onblur="judge()" /><span id="hint" style="color: red" > </span>
</body>
</html>
document.myform.uname.focus()标签定位到本文档,myform表单下的uname元素上
标签:myform,用户,value,uname,var,document,数据,输入 来源: https://blog.csdn.net/m0_46547715/article/details/121473542