ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2009年2月17日 星期二
javascript, iframe
How to access iframe in jQuery
外面拿iframe 裡面的東西
//Assuming you have
<[iframe id="iframeID" ...]><[/iframe]>
//Iframe contains div with id=”someID”:
<[div id="someID"]>Hello world!<[/div]>
//Need get div’s text?
$('#iframeID').contents().find('#someID').html();
get dimensions of the parent from the child iframe
在iframe裡面拿外面的東西
var parent_iframe=self.parent.$(’#parent_frame_id’);
IE has a security precaution
想把iframe 裡面東西跟parent 搬來搬去, 不行
出錯在appendChild的時候,
因為dom對象不能跨document傳
//會爆, 因為就是連dom都不能跨document 傳阿
function show_small_report(){
var big_report = $('#account').contents().find('#report');
$('#Box .iframeA').append(big_report);
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言