jquery判断input值不为空的方法

<input type="text" class="searchbox" />

<script type='text/javascript'>

$(document).ready(function(){

//enter回车键激活搜索

$('.searchbox').bind('keypress', function(event) {

if (event.keyCode == "13")

{

search_news();

}

});

var k = $(".searchbox").val();

if(k!=''){

document.location = "/plus/search.php?kwtype=0&searchtype=title&q=" + encodeURI(k);

}

</script>

再给大家分享一个更简洁的方法

$(function() {

$(".searchbox").blur(function() {

if ($(".searchbox").val() == "")

{ $(".searchbox").focus(); }

else

alert($(".searchbox").val());

});

});

以上是 jquery判断input值不为空的方法 的全部内容, 来源链接: utcz.com/z/342844.html

回到顶部