底部统计JS兼容 IE code review by bikai
Showing
1 changed file
with
6 additions
and
2 deletions
@@ -31,7 +31,11 @@ var _hmt = _hmt || []; | @@ -31,7 +31,11 @@ var _hmt = _hmt || []; | ||
31 | s.parentNode.insertBefore(hm, s); | 31 | s.parentNode.insertBefore(hm, s); |
32 | })(); | 32 | })(); |
33 | } | 33 | } |
34 | - window.addEventListener('load', async_load, false); | 34 | + if (window.addEventListener) { |
35 | + window.addEventListener(type, async_load, false); | ||
36 | + } else if (window.attachEvent) { | ||
37 | + window.attachEvent("on" + type, async_load); | ||
38 | + } | ||
35 | })(); | 39 | })(); |
36 | </script> | 40 | </script> |
37 | <script> | 41 | <script> |
@@ -48,4 +52,4 @@ var _hmt = _hmt || []; | @@ -48,4 +52,4 @@ var _hmt = _hmt || []; | ||
48 | var h = d.getElementsByTagName("script")[0];h.parentNode.insertBefore(c, h); | 52 | var h = d.getElementsByTagName("script")[0];h.parentNode.insertBefore(c, h); |
49 | }(document); | 53 | }(document); |
50 | </script> | 54 | </script> |
51 | -<script src="http://static.yohobuy.com/js/v3/o_code.js?v=20150420" async="async"></script> | ||
55 | +<script src="http://static.yohobuy.com/js/v3/o_code.js?v=20150420" async="async"></script> |
-
Please register or login to post a comment