如何用JS在网页中引用另一个网页的内容?

2024-11-11 12:32:47
推荐回答(3个)
回答1:

使用javascript,利用AJAX可以非常方便的调入html文档。
JQuery对AJAX进行了很好的封装,使用起来非常方便。
最简便的方便就是用jQuery的load方法,可以方便的调入包括html等在内的文档。
例如:
$('#result').load('ajax/test.html',
function()
{
alert('Load
was
performed.');
});
如果导入了jQuery,并且指定html文档也存在,系统会将test.html中的内容导入到元素#result中。

回答2:

为什么搞那么复杂?

就是啦



Example


The material below comes from the website http://example.com


回答3:

为什么搞那么复杂?

就是啦


Example


The
material
below
comes
from
the
website
http://example.com
src="http://example.com"
height="200">
Alternative
text
for
browsers
that
do
not
understand
IFrames.