标签:width color frame click blog logs func isp ref
html:
<iframe id="ifm" style="width:inherit;height:inherit" runat="server" ></iframe> <li data-options="iconCls:‘icon-search‘"> <a href="javascript:void(0)" onclick="showdata()">学生成绩表</a> </li>
JS:
function showdata() { $("#ifm").attr("src", ‘showdialog.aspx‘);//JQuery动态加载iframe。 }
.net aspx后台加载:
if (!IsPostBack) { this.ifm.Attributes.Add("src ", "showdialog.aspx"); }
标签:width color frame click blog logs func isp ref
原文地址:http://www.cnblogs.com/longdb/p/7582686.html