Posted in Javascript onJune 05, 2016
<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值不为空的方法
- Author -
hebedich声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@