判断输入框是否为空? 30
<script>functionCheckForm(){if(document.getElementById("search-keyword").value==""||d...
<script>
function CheckForm()
{
if(document.getElementById("search-keyword").value==""||document.getElementById("search-keyword").value=="请输入搜索关键字")
{
alert("提示您!\n\请输入搜索关键字");
return false;
}
}
</script>
<form name="formsearch" class="soso_form" action="/search.php" onsubmit="return CheckForm();" >
<input type="hidden" name="kwtype" value="0" />
<input type="hidden" name="searchtype" value="title" />
<input name='keys' type="text" class="soso_txt" style="border:0px;" id="search-keyword" value="在这里搜索..." onfocus="if(this.value=='在这里搜索...'){this.value='';}"
onblur="if(this.value==''){this.value='在这里搜索...';}" />
<input type="image" name="kwtype" src="/style/images/index_pic12.jpg" class="soso_submit"/>
</form>
上面的,为什么不起作用呢 展开
function CheckForm()
{
if(document.getElementById("search-keyword").value==""||document.getElementById("search-keyword").value=="请输入搜索关键字")
{
alert("提示您!\n\请输入搜索关键字");
return false;
}
}
</script>
<form name="formsearch" class="soso_form" action="/search.php" onsubmit="return CheckForm();" >
<input type="hidden" name="kwtype" value="0" />
<input type="hidden" name="searchtype" value="title" />
<input name='keys' type="text" class="soso_txt" style="border:0px;" id="search-keyword" value="在这里搜索..." onfocus="if(this.value=='在这里搜索...'){this.value='';}"
onblur="if(this.value==''){this.value='在这里搜索...';}" />
<input type="image" name="kwtype" src="/style/images/index_pic12.jpg" class="soso_submit"/>
</form>
上面的,为什么不起作用呢 展开
展开全部
document.getElementById("search-keyword").value 的值为: 在这里搜索...
条件都不符合
条件都不符合
追问
知道了,if(document.getElementById("search-keyword").value==""||document.getElementById("search-keyword").value=="在这里搜索...") 这样就正确了
追答
var str = document.getElementById("search-keyword").value
if(str=="" || str=="请输入搜索关键字" || str =="在这里搜索...")
{
alert("提示您!\n\请输入搜索关键字");
return false;
}
}
在条件中再加入 一个判断条件就行了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询