在 HTML 超链接中,有没有办法在第一页中显示第二页内容?
例子:
第一页:
<a href="image1.html">image1</a> <a href="image2.html">image2</a>
<div> show image on first page here </div>
非常感谢你
在 HTML 超链接中,有没有办法在第一页中显示第二页内容?
例子:
第一页:
<a href="image1.html">image1</a> <a href="image2.html">image2</a>
<div> show image on first page here </div>
非常感谢你
<iframe src="page.html" id="page"></iframe
<a href="new.html" target="page">Open new.html in an iframe</a>
您可以使用 iFrame。这将创建一个以 page.html 作为其源的 iframe,以及一个将其切换到 new.html 的链接
我想你想使用frame。
我不知道为什么(可能是因为您标记了 javascript),我认为您正在尝试制作更像这样的东西(在 div 中加载 ajax):
<!DOCTYPE html>
<html lang="es">
<head>
<title>Hope this helps!</title>
</head>
<body>
<a href="#" id="secondpage">Second Page here!</a>
<div id="hereitgoes">
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('document').ready(function(){
$("#secondpage").click(function(){
$("#hereitgoes").load("secondpage.html");
});
});
});
</script>
</body>
</html>
请记住,您必须在 Web 服务器下运行它才能工作。
希望它有所帮助,并且这是您想要的!