Showing
1 changed file
with
12 additions
and
8 deletions
@@ -81,14 +81,18 @@ | @@ -81,14 +81,18 @@ | ||
81 | _fxcmd.trackAll = false; | 81 | _fxcmd.trackAll = false; |
82 | // 参数配置(可选)... | 82 | // 参数配置(可选)... |
83 | // 追踪配置(可选)... | 83 | // 追踪配置(可选)... |
84 | - (function () { | ||
85 | - var _pzfx = document['createElement']('script'); | ||
86 | - _pzfx.type = 'text/javascript'; | ||
87 | - _pzfx.async = true; | ||
88 | - _pzfx.src = '//static.w3t.cn/fx/1/1/fx.js'; | ||
89 | - var sc = document.getElementsByTagName('script')[0]; | ||
90 | - sc.parentNode.insertBefore(_pzfx,sc); | ||
91 | - })(); | 84 | + |
85 | + setTimeout(function() { | ||
86 | + (function () { | ||
87 | + var _pzfx = document['createElement']('script'); | ||
88 | + _pzfx.type = 'text/javascript'; | ||
89 | + _pzfx.async = true; | ||
90 | + _pzfx.src = '//static.w3t.cn/fx/1/1/fx.js'; | ||
91 | + var sc = document.getElementsByTagName('script')[0]; | ||
92 | + sc.parentNode.insertBefore(_pzfx,sc); | ||
93 | + })(); | ||
94 | + }, 1000); | ||
95 | + | ||
92 | 96 | ||
93 | </script> | 97 | </script> |
94 | 98 |
-
Please register or login to post a comment