首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

事件仿照

2012-10-29 
事件模仿$(function(){$(#old).bind(click, function(){$(input).trigger(focus)})$(#new).bi

事件模仿
$(function(){
    $('#old').bind("click", function(){
$("input").trigger("focus");
});
$('#new').bind("click", function(){
    $("input").triggerHandler("focus");
});
$("input").focus(function(){
            $("body").append("<p>focus.</p>");
        })
})


<button id="old">trigger</button>
<button id="new">triggerHandler</button>
<input />

热点排行