很郁悶,看個博客嗎,還要在安裝一個浏覽器?俺很懶,俺就是想要用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……就可以了。
代碼
代碼如下:
<html>
<head><title>用IE6看老趙的博客v1.1</title>
<script src="aspnet_client/jquery/jquery-1.3.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
url: "http://www.cnblogs.com/JeffreyZhao/default.aspx",
cache: false,
success: function(html){
ss = html;
ss=ss.replace(/location/g, "status");
$("#results").append(ss);
}
});
});
</script>
</head>
<body>
<div id="results">正在加載請稍後......</div>
</body>
</html>
(根據大家的幫助,修改了一下代碼。)
代碼就是這樣了,在本地建立一個文本文件,改名,copy,運行。然後IE6裡面就可以看到老趙的博客了。
ps:在網站裡運行這段代碼,居然說“沒有權限”。所以就不能在線演示了。