js文本框回车事件
2021-03-21 04:24
标签:type val keycode cat http on() event index 代码 js代码 $("#b-text").keypress(function(){ js文本框回车事件 标签:type val keycode cat http on() event index 代码 原文地址:https://www.cnblogs.com/huhewei/p/12729163.html
if(event.keyCode == 13){
var value=$("#b-text").val();
if(value.length > 0){
window.location="http://www.baidu.com/";
}else{
window.location="index.html";
}
}
});
html代码: