打开同一页面中div内的表格中的链接

时间:2017-03-07 06:39:29

标签: javascript jquery html

我创建了html页面如下:



<!DOCTYPE html>
<html>

<body bgcolor="#EBF5FB">
  <h1 align="center">SLA Monitor Reports </h1>
  <div id="link" align="center">

    <table cellpadding="25px" border=1>
      <tr>

        <td>
          <a href="https://serv.sxp.nova.corp/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.nova.pct!2fplatform_add_ons!2fcom.nova.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?BOOKMARK=CU4A95OJ17A355B2112ML30G6" target="_blank"><img src="\\server\server$\23185\Downloads\1Google.png" alt="Ticket Aging" style="width:200px"></a>
        </td>
        <td>
          <a href="https://serv.sxp.nova.corp/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.nova.pct!2fplatform_add_ons!2fcom.nova.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?BOOKMARK=CU4A95OJ17A355B2112ML30G6" target="_blank"><img src="\\server\server$\23185\Downloads\1Google.png" alt="Ticket Aging" style="width:200px"></a>
        </td>
      </tr>
    </table>
  </div>
  <div>

  </div>

</body>

</html>
&#13;
&#13;
&#13;

我想使用<div>在同一页面的表格下显示https:// ......链接的内容。

IFrames没有帮助,因为它是一个安全的链接。

任何人都可以帮忙。

1 个答案:

答案 0 :(得分:0)

$("#link table td a").click(function(e){
    $("#link").next().load($(this).attr("href"));
    e.preventDefault()
});

https://jsfiddle.net/7uj8tk2y/