如何将链接页面显示为表格的内容我的例子中的元素?

发布于 2024-12-10 17:50:53 字数 339 浏览 0 评论 0原文

我制作了一个 HTML 表格。

假设我有一个链接,例如链接到 www.nokia.com ,我可以在点击“click me”时将链接页面显示为表格元素的内容吗?以及如何做到这一点?

<a href="#">click me</a>

<table>
  <tr>
    <td>
         // how to show the content of "www.nokia.com" page here
    </td>
  </tr>  
<table>

I have made a HTML table.

Suppose I have a link, for example, link to www.nokia.com , can I show the linked page as a content of the table element when "click me" has clicked? and how to do that?

<a href="#">click me</a>

<table>
  <tr>
    <td>
         // how to show the content of "www.nokia.com" page here
    </td>
  </tr>  
<table>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随遇而安 2024-12-17 17:50:53

也许您可以使用 和一些 jQuery 来完成这项工作。

示例:

jQuery:

$(document).ready(function(){
  $("a").click(function(){
      $("iframe").show();
  });
});

HTML:

<a href="#">click me</a>

<table>
  <tr>
    <td>
      <iframe src="http://www.nokia.com" width="100%" height="300"  style="display: none;">
      <p>Your browser does not support iframes.</p>
      </iframe>        
    </td>
  </tr>  
<table>

Maybe you could use <iframe> and some jQuery for the job.

Example:

jQuery:

$(document).ready(function(){
  $("a").click(function(){
      $("iframe").show();
  });
});

HTML:

<a href="#">click me</a>

<table>
  <tr>
    <td>
      <iframe src="http://www.nokia.com" width="100%" height="300"  style="display: none;">
      <p>Your browser does not support iframes.</p>
      </iframe>        
    </td>
  </tr>  
<table>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文