js文本框回车事件

2021-03-21 04:24

阅读:614

标签:type   val   keycode   cat   http   on()   event   index   代码   

js代码

$("#b-text").keypress(function(){
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代码:



js文本框回车事件

标签:type   val   keycode   cat   http   on()   event   index   代码   

原文地址:https://www.cnblogs.com/huhewei/p/12729163.html


评论


亲,登录后才可以留言!