这里怎么可能从 div“youtubeHolder”中的 iframe 中获取“src”?下面的代码中发生的是它搜索所有以 youtubeHolder 开头的 id。并且有多个持有者,动态创建为 youtubeHolder1、youtubeHolder2 等。
有任何想法吗?
查询:
$(document).ready(function() {
$('a#export').on('click',function(){
var contentMap = {};
$('[id^="youtubeHolder"]').each(function(){
contentMap[this.id] = $(this).html();
});
for(id in contentMap) {
$.ajax({
url: "post.php",
type: "post",
data: {
ExportDivID: id,
ExportDivContent: contentMap[id]
},
success: function(){
alert("success");
},
error:function(){
alert("failure");
}
});
}
});
});
提前谢谢了!