判断文本框是否输入文本,如果输入了点确定就提交,否则提示请输入
判断文本框是否输入文本,如果输入了点确定就提交,否则提示请输入
判断文本框是否输入文本,如果输入了点确定就提交,否则提示请输入
2018-08-16
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>判断输入框是否为空</title>
<script>
function inputText(){
var x=document.getElementById("text").value;
if(x==""){
alert("请输入用户名!");
}
else{
alert("提交成功!");
}
}
</script>
</head>
<body>
请输入用户名:<input type="text" name="text" id="text"><br>
<input type="button" value="确定" id="btn" onClick="inputText()">
</body>
</html>
举报