当前位置: 代码迷 >> Web前端 >> 事件仿照
  详细解决方案

事件仿照

热度:228   发布时间:2012-10-29 10:03:53.0
事件模仿
$(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 />
  相关解决方案