- html
<input id="searchInput" placeholder="请输入车牌号" value="" type="search"/>
- js
// 检测手机端回车
$('#searchInput').bind('keypress', function(event) {
var content = $(this).val();
if (event.keyCode == "13") {
if(content != ''){
location.href='search.html';
}else{
alert('车牌号不能为空');
}
}
});
网友评论