我创建了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;
我想使用<div>
在同一页面的表格下显示https:// ......链接的内容。
IFrames没有帮助,因为它是一个安全的链接。
任何人都可以帮忙。
答案 0 :(得分:0)
$("#link table td a").click(function(e){
$("#link").next().load($(this).attr("href"));
e.preventDefault()
});