码迷,mamicode.com
首页 > 其他好文 > 详细

模拟鼠标点击

时间:2015-04-10 16:53:12      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

function fakeClick(fn) {
    var $a = $(‘<a href="#" id="fakeClick"></a>‘);
    $a.bind("click", function(e) {
          e.preventDefault();
        fn();
    });
    $("body").append($a);
    var evt,el = $("#fakeClick").get(0);
    if (document.createEvent) {
        evt = document.createEvent("MouseEvents");
        if (evt.initMouseEvent) {
            evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
            el.dispatchEvent(evt);
        }
    }
    $(el).remove();
}
var _this = this;
$(function() {
    fakeClick(function() {
        //TODO
    });
});

 

模拟鼠标点击

标签:

原文地址:http://www.cnblogs.com/rubekid/p/4414638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!