可能老趙很反感IE6,所以他在自己的博客裡面做了點手腳,如果是IE6浏覽他的博客的話,那麼就會跳轉到另一個頁面。
很郁悶,看個博客嗎,還要在安裝一個浏覽器?俺很懶,俺就是想要用IE6看!
最近在看jQuery,剛剛入一點門,發現了一個有趣的函數,就拿老趙的博客做實驗了,哈。
裝入一個 Html 網頁最新版本。
jQuery 代碼:
$.AJax({
url: "test.Html",
cache: false,
success: function(Html){
$("#results").append(Html);
}
});
<div id="results"></div>
就用這個了,把地址換成老趙的博客,看看會有什麼效果,嘻嘻。
新建一個文本文件,改名為:a.htm。照貓畫虎,copy進去例子裡的代碼,改URL,運行。
看到了,哈,等等,怎麼又跳轉了?看來博客裡面的JS腳本也運行了。找,把那段腳本干掉不就ok了嗎。
找了半天(JS比較爛),終於找到了。
代碼
<!--[if IE 6]>
<script language="Javascript" type="text/Javascript">
var url = window.location.toString();
window.location = "http://files.cnblogs.com/JeffreyZhao/no-ie6.xml?r=" + Math.random().toString() + "&from=" + encodeURIComponent(url);
</script>
<![endif]-->
就是這段代碼在搗亂,干掉。replace掉“window.location……就可以了。
代碼
<head><title>用IE6看老趙的博客v1.0</title>
<script src="ASPnet_clIEnt/jquery/jquery-1.3.1.JS" type="text/Javascript"></script>
<script type="text/Javascript">
//等待dom元素加載完畢.
$(document).ready(function(){
$.AJax({
url: "http://www.cnblogs.com/JeffreyZhao/archive/2010/01/14/talk-about-code-performance-4-asm-optimization.html",
cache: false,
success: function(Html){
html = Html.replace("window.location = \"http://files.cnblogs.com/JeffreyZhao/no-ie6.xml?r=\" + Math.random().toString() + \"&from=\" + encodeURIComponent(url);","");
$("#results").append(Html);
}
});
});
</script>
</head>
<body>
<div id="results"></div>
</body>
</Html>
代碼就是這樣了,在本地建立一個文本文件,改名,copy,運行。然後IE6裡面就可以看到老趙的博客了。
ps:在網站裡運行這段代碼,居然說“沒有權限”。所以就不能在線演示了。