JQuery 动态加载iframe.

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");
}
上一篇:jquery动态加载js/css文件方法


下一篇:myeclicps开发web时候复制一个工程改名字后执行出现404错误