现在的位置: 首页 > 综合 > 正文

jquery事件绑定

2012年12月17日 ⁄ 综合 ⁄ 共 291字 ⁄ 字号 评论关闭

 

$('#id').bind('事件名',function(){

//

}

);

 //===========================

//判定按键

 $('#tbInput').bind('keypress', function(e) {
                var e = window.event ? window.event : e;
                if (e.keyCode == 39) {
                    alert("39");
                }
            }); 

//注意置焦

$("#myinput")[0].focus();

 

抱歉!评论已关闭.