「jquery append to iframe」的推薦目錄:
- 關於jquery append to iframe 在 コバにゃんチャンネル Youtube 的最佳貼文
- 關於jquery append to iframe 在 大象中醫 Youtube 的精選貼文
- 關於jquery append to iframe 在 大象中醫 Youtube 的精選貼文
- 關於jquery append to iframe 在 [問題] jQuery產生出iframe後,該怎麼取得裡面的元件內容? 的評價
- 關於jquery append to iframe 在 appending content into a dymanically created iframe gets an ... 的評價
- 關於jquery append to iframe 在 append() script string to iframe causes script execution in top ... 的評價
- 關於jquery append to iframe 在 Appending an iframe to a lightning component - Salesforce ... 的評價
- 關於jquery append to iframe 在 jQuery Print Plugin 的評價
- 關於jquery append to iframe 在 Play (Embed) YouTube Videos using IFRAME with AutoPlay ... 的評價
- 關於jquery append to iframe 在 youtube iframe api with jquery - Envato Forums 的評價
- 關於jquery append to iframe 在 Accessing an iframe document (contentWindow) 的評價
jquery append to iframe 在 大象中醫 Youtube 的精選貼文
jquery append to iframe 在 大象中醫 Youtube 的精選貼文
jquery append to iframe 在 appending content into a dymanically created iframe gets an ... 的推薦與評價
... <看更多>
相關內容
jquery append to iframe 在 append() script string to iframe causes script execution in top ... 的推薦與評價
.append() script string to iframe causes script execution in top window ... mgol added a commit to mgol/jquery that referenced this issue on ... ... <看更多>
jquery append to iframe 在 [問題] jQuery產生出iframe後,該怎麼取得裡面的元件內容? 的推薦與評價
假設我現在這樣下
$("body").append('<iframe src="'+url+'"></iframe>');
我想要在iframe讀取完之後取得裡面的元素,例如div.aaa
我用
1.
$("body").append('<iframe src="'+url+'"></iframe>').onload(function(){
$(this).find("div.aaa");
});
失敗
2.
$("body").append('<iframe src="'+url+'"></iframe>');
$("body iframe").onload(function(){
$(this).find("div.aaa");
});
失敗
3.
$("body").append('<iframe src="'+url+'"></iframe>');
$("body iframe").get(0).onload=function(){
$(this).find("div.aaa");
}
也失敗
我也試著用post或get的方法來去得網頁內容
$.post(url,function(data){
alert(data);
});
但是第一個問題是,該網頁似乎有某種機制,傳回來的data是空的
第二個問題是,傳回來的data是一串文字,要怎麼取得裡面的元件?
再把它塞進一個div之中?
感謝...
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 219.85.211.136
... <看更多>