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");
    }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM