标签: html iframe
我想将此网站http://qstn.mthmtcs.ir的问题作为iframe显示在其他网站中。 我不想要显示所有页面。我想展示问题部分。
<iframe src="http://qstn.mthmtcs.ir/index.php?qa=80" width="100%" height="100%" align="center" ></iframe>
我想为我的网站创建一个bbcode。 人们可以在帖子中插入url linke并显示该问题。
答案 0 :(得分:0)
你不能用iFrame做到这一点,但你可以使用Ajax。
请参阅this Q&A以获取参考,并this:
$.ajax({ url: 'http://www.somesite.com/', type: 'GET', success: function(res) { $(res.responseText).find('div.content').each(function(){ $('#here').append($(this).html()); }); } });
然后,您需要解析您想要定位的特定元素。