JQuery 动态加载iframe.

Posted longdb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 动态加载iframe.的主要内容,如果未能解决你的问题,请参考以下文章

iframe每个页面加载css js

jQuery 的选择器在 iframe 中不起作用

使用jQuery动态调整iframe高度,以及jQuery对dom元素的监听

Jquery 未加载到包含 jquery 的 iFrame 中

jQuery怎么给iframe的src赋值

点击时动态加载包含 iframe 的模式?