如何用JS在网页中引用另一个网页的内容?
假设有a.html和b.html这两个文件,我想在a.html中引用b.html,我建一个123.js的文件,然后在a.html中引用这个JS文件,请问这个JS文件该怎么...
假设有a.html和b.html这两个文件,我想在a.html中引用b.html,我建一个123.js的文件,然后在a.html中引用这个JS文件,请问这个JS文件该怎么写?a.html中该怎么写??
谢谢拉! 展开
谢谢拉! 展开
3个回答
展开全部
使用javascript,利用AJAX可以非常方便的调入html文档。
JQuery对AJAX进行了很好的封装,使用起来非常方便。
最简便的方便就是用jQuery的load方法,可以方便的调入包括html等在内的文档。
例如:
$('#result').load('ajax/test.html',
function()
{
alert('Load
was
performed.');
});
如果导入了jQuery,并且指定html文档也存在,系统会将test.html中的内容导入到元素#result中。
JQuery对AJAX进行了很好的封装,使用起来非常方便。
最简便的方便就是用jQuery的load方法,可以方便的调入包括html等在内的文档。
例如:
$('#result').load('ajax/test.html',
function()
{
alert('Load
was
performed.');
});
如果导入了jQuery,并且指定html文档也存在,系统会将test.html中的内容导入到元素#result中。
展开全部
为什么搞那么复杂?
<iframe></iframe>
就是啦
<html>
<head>
<title>Example</title>
</head>
<body>
The material below comes from the website http://example.com
<iframe src="http://example.com" height="200">
Alternative text for browsers that do not understand IFrames.
</iframe>
</body>
</html>
<iframe></iframe>
就是啦
<html>
<head>
<title>Example</title>
</head>
<body>
The material below comes from the website http://example.com
<iframe src="http://example.com" height="200">
Alternative text for browsers that do not understand IFrames.
</iframe>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
为什么搞那么复杂?
<iframe></iframe>
就是啦
<html>
<head>
<title>Example</title>
</head>
<body>
The
material
below
comes
from
the
website
http://example.com
<iframe
src="http://example.com"
height="200">
Alternative
text
for
browsers
that
do
not
understand
IFrames.
</iframe>
</body>
</html>
<iframe></iframe>
就是啦
<html>
<head>
<title>Example</title>
</head>
<body>
The
material
below
comes
from
the
website
http://example.com
<iframe
src="http://example.com"
height="200">
Alternative
text
for
browsers
that
do
not
understand
IFrames.
</iframe>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询