我正在用html写一个网站 但在我的代码页面上,我希望有话要说 “点击这里打印目录列表”
目录列表是另一个加载了我信息的网页。
谁能告诉我怎么做?
答案 0 :(得分:0)
您可以使用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>