DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 同域jQuery(跨)iframe操作DOM(示例代碼)
同域jQuery(跨)iframe操作DOM(示例代碼)
編輯:JQuery特效代碼     

frame目前還是比較流行的,許多地方都通過它來實現特殊的情況。比如說傳統的上傳、select在ie6下、代理、跨域等等。今天呢,簡要的記述一下跨iframe的相關操作,主要是用jQuery操作DOM結構方面。
. 代碼如下:
<iframe src="a.php" id="aa"></iframe>
<iframe src="b.php" id="bb"></iframe>
<input type="button" id="read-aa" value="讀取iframe #aa">
<input type="button" id="write-aa" value="寫入iframe #aa">

. 代碼如下:
$('#read-aa').click(function()
{
    var v=$('#aa').contents().find('body').html();
    alert(v);
});
$('#write-aa').click(function()
{

    $('#aa').contents().find('div').append('<hr>這是index.php操作aa.php寫入的內容');
});

主要方法是 contents(),讀取iframe。

2、iframe跨父框架操作iframe
. 代碼如下:
<!DOCTYPE html>
<meta charset="utf-8">
<title>bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb</title>
<script src="public/jQuery.js"></script>
<script>
$(function()
{
    $('#read-parent-aa').click(function()
    {
        var v=$('body',parent.document).find('#aa').contents().find('body').html();
        alert(v);
    });
    $('#write-parent-aa').click(function()
    {
        $('body',parent.document).find('#aa').contents().find('div').append('<hr>這是bb.php操作aa.php寫入的內容');
    });
});
</script>
<div>
這是iframe #bb裡的內容
</div>
<input type="button" id="read-parent-aa" value="跨父讀取iframe #aa">
<input type="button" id="write-parent-aa" value="跨父寫入iframe #aa">

HTML:代碼
. 代碼如下:
<!DOCTYPE html>
<meta charset="utf-8">
<title>jQuery操作iframe</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<iframe src="a.php" id="aa"></iframe>
<iframe src="b.php" id="bb"></iframe>
<input type="button" id="read-aa" value="讀取iframe #aa">
<input type="button" id="write-aa" value="寫入iframe #aa">
<script>
$(function()
{
 $('#read-aa').click(function()
 {
  var v=$('#aa').contents().find('body').html();
  alert(v);
 });
 $('#write-aa').click(function()
 {

  $('#aa').contents().find('div').append('<hr>這是index.php操作aa.php寫入的內容');
 });
});
</script>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved