如何讓動態插入的javascript指令碼代碼跑起來。[

來源:互聯網
上載者:User

二、用XMLHttpRequest和window.execScript動態執行a.js,這個方法的優點比較明顯,但效率可能有所下降,沒有測試,有興趣的朋友可以自己測試一下速度。
代碼如下: <script language="javascript">
function bar(u) {
   var x=window.ActiveXObject?new ActiveXObject("MSXML2.XMLHTTP"):new XMLHttpRequest();
   x.open("GET",u,false);
   x.send(null);
   s=x.responseText;
   try {window.execScript(s)}catch(ex){window.eval(s)};//Mozilla下window.eval大致與IE的window.execScript方法功能相同
}
bar("a.js");
foo();
</script>但這個方法仍有缺點,也就是a.js指令碼中的代碼有中文的情況,如何處理?那就要經常解碼了,而解碼恰恰是js的軟肋,如果運用VBs來解碼,那麼相容也就沒有了。要看自己具體的應用了,我在neverModules裡載入js包時用的就是window.execScript方法來解析代碼,這樣更可以配合js namespace的應用
加上指令碼解碼(用vbs來解碼):
<script type="text/javascript">
//<![CDATA[
  function bar(u) ...{
    var x=window.ActiveXObject?new ActiveXObject("MSXML2.XMLHTTP"):new XMLHttpRequest();
     x.open("GET",u,false);
     x.send(null);
     s=parseScript(x.responseText);
    try ...{window.execScript(s)}catch(ex)...{window.eval(s)};
   }
  function parseScript(jscode) ...{
// --- toCurrentCharset(), by aimingoo 解碼
window.execScript(''+
'Function Asc2Unicode(n) '+
' Asc2Unicode = Chr(n) '+
'End Function '+

'Function SafeArray2Str(body) '+
' SafeArray2Str = CStr(body) '+
'End Function','VBScript');

var r1 = /%u(..)(..)/g, r2 = /%([8,9,A-F].)%(..)/g;
var toUnicode = function($0, $1, $2) ...{return Asc2Unicode(parseInt($1+$2, 16))}
toCurrentCharset = function(body) ...{
return unescape(escape(SafeArray2Str(body)).replace(r1, "%$2%$1").replace(r2, toUnicode));
}; jscode=toCurrentCharset(jscode);
     window.execScript(jscode, 'JavaScript'); //IE有效,vbs解碼
    return jscode;
}

   bar('a.js');

   foo();
//]]>
</script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.