|
在這樣的理解下做了很多的腳本,似乎也真的沒有出現過什么問題,于是更加篤信自己當初的判斷。結果又一次被IE暗算了,encode后的腳本和normal的腳本混和使用不是沒有問題,也不是都有問題,只是在特定的條件下會出問題,真是暈死。看下面這個示例:
復制代碼 代碼如下:
<html>
<head>
<title>JScript Encode Research</title>
<meta name="author" content="birdshome@cnblogs" />
</head>
<body>
<script language="jscript.encode" type="text/jscript.encode">
#@~^8gAAAA==~,P~,P,Pr(L^Ycw.WDWOza+Rtn/klo~xP6E mOkGUv#@#@&,~P,P~~, @#@&~,P~P,~,P~,P,lVDDcB}4%+1Y 2MWYKOXa+Rtnd/moBbi@#@&,P~P,~P,8I@#@&PP~~,P~P@#@&,P~,P,PP}4NnmDR/+k/CLP',WE mYbGU`*@#@&P~P~~,P~ @#@&P,P~~,PP~~,P~l^nMYcEr(L+1Yc/+k/CoBbI@#@&P,~P,PP,NIGjkAAA==^#~@
</script>
<script language="jscript.encode" type="text/jscript.encode">
#@~^FgEAAA==~,P~,P,P0!x1OkKx~2mG[`#,`8@#@&@#@&~~P,P,P~2U^KNnRa.WDWOza+R/nk/Co~{PW!x1YkKxvb@#@&P~P,P~~, @#@&~P,PP,~~P,P,.kOndkU+vv2 mG[Rw.GDWOXancHnk/mo+E#p@#@&,P~P,P~~)i@#@&@#@&,PP,~~P,2 mGNn t+d/mL+,'~W!xmOrKxc#@#@&,P~,P,PPP@#@&~P,P~P,P~~,PMrYSk ncBAx1W[+ //dlTnB*i@#@&,PP~~,P~8p~,V0MAAA==^#~@
</script>
<script language="jscript" type="text/jscript">
function Normal() {}
Normal.prototype.Message = function()
{
WriteLine('Normal.prototype.Message');
};
Normal.Message = function()
{
WriteLine('Normal.Message');
};
</script>
<script language="jscript" type="text/jscript">
var msg = '.prototype.Message" Fail.<br>';
function WriteLine(msg) { document.write(msg + '<br><br>'); }
var o = new Object();
try { o.Message(); }
catch(e) { WriteLine('Call "Object' + msg + e.message); }
try { Object.Message(); }
catch(e) { WriteLine('Call "Object.Message" Fail. <br>' + e.message); }
var e = new Encode();
try { e.Message(); }
catch(e) { WriteLine('Call "Encode' + msg + e.message); }
Encode.Message();
var n = new Normal();
try { n.Message(); }
catch(e) { WriteLine('Call "Normal' + msg + e.message); }
Normal.Message();
</script>
</body>
</html>
把上面的代碼存為一個*.htm文件,打開后得到結果為:
Call "Object.prototype.Message" Fail.
Object doesn't support this property or method
Call "Object.Message" Fail.
Object doesn't support this property or method
Encode.prototype.Message
Encode.Message
Normal.prototype.Message
Normal.Message
上面那兩段jscript.encode的代碼很簡單,就是: Object.prototype.Message = function()
{
alert('Object.prototype.Message');
};
Object.Message = function()
{
alert('Object.Message');
};
function Encode() {}
Encode.prototype.Message = function()
{
WriteLine('Encode.prototype.Message');
};
Encode.Message = function()
{
WriteLine('Encode.Message');
};
如果我們把上面兩段代碼替換那個html中的兩段jscript.encode的代碼,后面的運行將不會出任何異常,會得到這樣的輸出: Object.prototype.Message
Object.Message
...
上面這些代碼實例的試驗,已經詳細的說明了encode腳本代碼的問題。就是,不能在非編碼腳本中,引用編碼腳本中導入到JScript內置對象上的原型(prototype)方法和靜態方法。上面示例中的Object就是JScript的一個內置對象,我們分別導入了一個prototpye方法和靜態方法Message()。而對于非內置對象Encode,我們在已編碼代碼中導入的prototype和static方法,都可以在非編碼代碼中正常的訪問。
那么怎么訪問內置對象的導入方法呢?其實解決起來也不復雜,只是比較繁瑣。我們需要使用一些wrapper方法,把他們和被編碼的代碼放在一起,就可以在非編碼代碼中訪問了,比如上面的Object的導入,我們可以這樣包裝它:
Object.prototype.Message = function()
{
WriteLine('Object.prototype.Message');
};
Object.Message = function()
{
WriteLine('Object.Message');
};
var obj = new Object();
function ObjectPrototypeMessage()
{
obj.Message();
}
function ObjectMessage()
{
Object.Message();
}
這時,我們就可以通過ObjectPrototypeMessage和ObjectMessage這樣的wrapper方法訪問到已編碼代碼中內置對象的導入方法了。
JavaScript技術:encode腳本和normal腳本混用的問題與解決方法,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。