如何用js判断input为空?
使用js脚本就可以了,就是一个搜索框,点击搜索如果为空,有个小窗口提示,点击确定回到原来的窗口,安全一点的代码,不懂js,虚心请教。...
使用js脚本就可以了,就是一个搜索框,点击搜索如果为空,有个小窗口提示,点击确定回到原来的窗口,安全一点的代码,不懂js,虚心请教。
展开
展开全部
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>untitled</title>
<script type="text/javascript">
function testContent(obj){
if(document.getElementById(obj).value.length==0){
alert('不能为空');
}
}
</script>
</head>
<body>
<form name="search" method="post" action="">
<input name="input" id="test">
<input type="button" name="go" value="goSearch" onClick="testContent('test')">
</form>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>untitled</title>
<script type="text/javascript">
function testContent(obj){
if(document.getElementById(obj).value.length==0){
alert('不能为空');
}
}
</script>
</head>
<body>
<form name="search" method="post" action="">
<input name="input" id="test">
<input type="button" name="go" value="goSearch" onClick="testContent('test')">
</form>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询