求一个js文本框验证的例子,要求如果输入错误,在当前文本框会出现相关提示!谢谢!
展开全部
<%@ page pageEncoding="utf-8"%>
<html>
<head>
<title>Welcome to BrainySoftware</title>
<script type="text/javascript">
function check(){
var text = document.getElementById("text1").value.trim();
if(text==null || text==""){
document.getElementById("text1").value = "文本框不能为空,请填写";
text1.focus();
}
if(text.replace(/[^\x00-\xff]/g,"**").length>30){
document.getElementById("text1").value = "文本框最多30个字符";
text1.focus();
}
}
</script>
</head>
<body>
<br>
<input type="text" name="text1" id="text1">
<input type="button" id="button1" value="test" onclick="check()"/>
</body>
</html>
<html>
<head>
<title>Welcome to BrainySoftware</title>
<script type="text/javascript">
function check(){
var text = document.getElementById("text1").value.trim();
if(text==null || text==""){
document.getElementById("text1").value = "文本框不能为空,请填写";
text1.focus();
}
if(text.replace(/[^\x00-\xff]/g,"**").length>30){
document.getElementById("text1").value = "文本框最多30个字符";
text1.focus();
}
}
</script>
</head>
<body>
<br>
<input type="text" name="text1" id="text1">
<input type="button" id="button1" value="test" onclick="check()"/>
</body>
</html>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询