11

我试图在 IE8 上触发一个自定义事件,并从这里这里一起摆弄一个解决方案。但我无法让它工作......

我正在将 jquery mobile 与 requireJS 和谷歌分析一起使用。所以我正在跟踪 JQMpageshow事件。但是,由于 requireJS 异步加载脚本,我对 pageshow 的绑定需要在 javascript“包装器”中进行,否则会产生错误,因为在解析代码段时,jquery 和 jquery mobile 都不会被加载。

所以我在每一页的末尾都包含了这个:

if (document.addEventListener) {
    document.addEventListener("jqmReady",function(){trigAnalytics("jqmReady");alert("FF detected")},false); 
} else if ( document.attachEvent ) {
    document.attachEvent("jqmReady", function(){trigAnalytics("jqmReady");alert("IE detected")}); 
}

当检测到时,我正在使用 pageshow 绑定触发我的分析片段:

var trigAnalytics = function( trigger ){ 
    $(document).on('pageshow','div:jqmData(role="page").basePage', function (event, ui) {
        var url = location.href; 
        try { 
            hash = location.hash; 
            if (hash && hash.length > 1) {
                 _gaq.push(['_trackPageview', hash.substr(1)]);
                 _gaq.push(['_setCustomVar', 1, 'id_external', ########, 1 ]);
            } else {
                _gaq.push(['_trackPageview', url]);
                _gaq.push(['_setCustomVar', 1, 'id_external', ########, , 1 ]);
                _gaq.push(['b._trackPageview', url]);
            } 
        } catch(err) { } 
    }); 
    if (typeof _gaq !== "undefined" && _gaq !== null) { 
        $(document).ajaxSend(function(event, xhr, settings){ 
            _gaq.push(['_trackPageview', settings.url]); 
            _gaq.push(['b._trackPageview', settings.url]);
        }); 
    } 
}; 

所以要启动事件链,我需要jqmReady在 JQM 准备好时触发。JQM 使用他们的mobileinit事件来表明这一点。所以在我的应用程序控制器初始化中,我像这样绑定到它:

$(document).bind("mobileinit", function () {

    // non-IE OK
    if (document.createEvent) {
        evt = document.createEvent("Event");
        evt.initEvent("jqmReady", true, true);
        document.dispatchEvent(evt);

    } else if (document.createEventObject) { 
    // MSIE (NOT WORKING)

        document.documentElement.evt = 0; // an expando property
        document.documentElement.attachEvent("jqmReady", function () {
            document.documentElement.evt = document.documentElement.evt + 1;
            });
    }
});

我试过只触发 $(window).trigger('jqmReady'),因为当mobileinit触发时,jquery 可用。但是,似乎addEventListener无法像这样触发中创建的事件,所以我需要一个纯 JavaScript 的解决方案来触发 IE 中的自定义事件。

问题:
有人可以告诉我如何正确触发 IE8 的 javascript 自定义事件吗?

4

2 回答 2

12

好的,我终于明白了......这是它的工作原理:

1)在正在加载的页面上设置jqmReady的监听器

// non-IE: just create a listener for the custom event "jqmReady"
if (document.addEventListener) {
    document.addEventListener("jqmReady",function(){trigAnalytics("jqmReady");alert("FF detected")},false); 
// IE8
} else if ( document.attachEvent ) {

    // create a custom property name jqmReady and set it to 0
    document.documentElement.jqmReady = 0;
    // since IE8 does not allow to listen to custom events, 
    // just listen to onpropertychange
    document.documentElement.attachEvent("onpropertychange", function(event) {

        // if the property changed is the custom jqmReady property
        if (event.propertyName == "jqmReady") {
            trigAnalytics("jqmReady");
            alert("gotcha")
            // remove listener, since it's only used once
            document.documentElement.detachEvent("onpropertychange", arguments.callee);
        }
    });
}

所以在 IE8 上我不听 custom jqmReady。相反,我监听onpropertychange我的自定义属性jqmReady

2)然后在mobileinit我触发是这样的:

 // non-IE
 if (document.createEvent) {
      evt = document.createEvent("Event");
      evt.initEvent("jqmReady", true, true);
      document.dispatchEvent(evt);
 } else if (document.createEventObject) { // MSIE
      // just change the property 
      // this will trigger onpropertychange
      document.documentElement.jqmReady++;
 };

好主意(归功于http://dean.edwards.name/weblog/2009/03/callbacks-vs-events/),也许其他人可以找到它的用途。

于 2012-11-18T12:00:38.247 回答
6

对于其他感兴趣的人,我已将此代码包装成一个静态 javascript 对象

function Event () {
}

Event.listen = function (eventName, callback) {
    if(document.addEventListener) {
        document.addEventListener(eventName, callback, false);
    } else {    
        document.documentElement.attachEvent('onpropertychange', function (e) {
            if(e.propertyName  == eventName) {
                callback();
            }            
        });
    }
}

Event.trigger = function (eventName) {
    if(document.createEvent) {
        var event = document.createEvent('Event');
        event.initEvent(eventName, true, true);
        document.dispatchEvent(event);
    } else {
        document.documentElement[eventName]++;
    }
}

用法:

Event.listen('myevent', function () {
    alert('myevent triggered!');
});

Event.trigger('myevent');

演示:http: //jsfiddle.net/c5CuF/

于 2013-10-03T13:02:09.300 回答