判断输入框是否为空? 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>

上面的,为什么不起作用呢
展开
 我来答
靖挚人生
2015-03-06 · 超过20用户采纳过TA的回答
知道答主
回答量:45
采纳率:0%
帮助的人:28.5万
展开全部
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;
}
}

在条件中再加入 一个判断条件就行了
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式