我正在用 html 编写一个网站,但是在我的代码中的一个页面上,我想说“单击此处打印目录列表”
目录列表是另一个网页,上面加载了我的信息。
谁能告诉我该怎么做?
你可以使用 jQuery:
<a href="#" id="dir_list">Click here for...</a>
<div id="directorylisting"></div>
$("#dir_list").click(function() {
$("#directorylisting").load("/path/to/your/page/with/data");
// or if you what replace all page contents use:
// $('body').load(...);
return false;
});
或者是这样的:
<a href="#" onclick="document.location.href='/path/to/your/page/with/data'">Click for...</a>