0

我正在用 html 编写一个网站,但是在我的代码中的一个页面上,我想说“单击此处打印目录列表”

目录列表是另一个网页,上面加载了我的信息。

谁能告诉我该怎么做?

4

1 回答 1

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>
于 2012-09-11T19:15:34.657 回答