zoukankan      html  css  js  c++  java
  • JQuery 动态加载iframe.

    html:

    <iframe id="ifm" style="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");
        }
  • 相关阅读:
    newgrp
    netstat
    netlink, PF_NETLINK
    netdevice
    mv
    mplayer
    mpg123
    MOVE
    motd
    more
  • 原文地址:https://www.cnblogs.com/longdb/p/7582686.html
Copyright © 2011-2022 走看看