三個頁在同一個視窗,分別為main.htm,left.htm和right.htm。
main.htm
複製代碼 代碼如下:<html>
<head>
<title>實現跨</title>
</head>
<body>
<div>主視窗</div>
<iframe id="left" name="left" width="500px" height="300px;" src="left.htm" ></iframe>
<iframe id="right" name="right" width="100px" height="100px;" src="right.htm" ></iframe>
</body>
</html>
left.htm 複製代碼 代碼如下:<html>
<head><title>左邊</title></head>
<body>
<div>我是左邊</div>
<div><img src="http://www.enjoymyself.info/images/buysc.jpg" alt=" " /></div>
</body>
</html>
right.htm 複製代碼 代碼如下:<html>
<head><title>右邊</title></head>
<body>
<div>
<input onclick="onclickRefresh();" type="button" value="提交" /></div>
<script type="text/javascript">
function onclickRefresh()
{
parent.frames[ "left"].location.reload();
//window.left.location.reload();
}
</script>
</body>
</html>
看到right.htm裡面
function onclickRefresh()通過 parent.frames["left"].location.refresh();來實現右邊頁面重新整理左邊頁面.
如果在首頁面加 複製代碼 代碼如下:<div><input type="button" onclick="mainRefresh();" value="主提交" /></div>
<script type="text/javascript">
function mainRefresh()
{
window.left.location.reload();
}
</script>
則可以通過首頁面重新整理子頁面。
雖然這樣可以超級簡單的實現的目的,但是實際項目中,資料不會是這麼簡單的,最常見是左\右樹,分類樹的建立載入(如建立一千個節點)本來就是比較耗資源。如果還是通過方式來重新整理左右頁面,效率之低可見而知,那麼是不是可以通過其他方式來實現跨域重新整理或者提交呢?
我所想到的是通過ajax實現資料局部載入。而不是整個樹的載入。另外通過jquery的json處理方式也可實現局部資料的更新。
不知道還有沒有其他更高效的方法?1000個節點的樹載入,效率值得思考的問題。