zoukankan      html  css  js  c++  java
  • iframe中用到的例子

    <view:qrytr> 
           <view:qrytd colspan="4">
        <iframe id="ccbl" width="100%" src="<%=webapp %>/spscqycc/spscqyccAction!ccbllist.dhtml?map.rwzj=${map.RWZJ}" frameBorder="0" scrolling="no" onLoad="iFrameHeight('ccbl')"></iframe>
        </view:qrytd>
        </view:qrytr> 
     
     
     
     function iFrameHeight(name) { 
                  var ifm= document.getElementById(name); 
                  var subWeb = document.frames ? document.frames[name].document : ifm.contentDocument; 
                  if(ifm != null && subWeb != null) 
                      {
                      ifm.height = subWeb.body.scrollHeight;
                      } 
                  }
     
        function fnsjfm() {
            $.ajax({
                url: '<%=webapp%>/spscqycc/spscqyccAction!updateFm.dhtml?map.rwzj=${map.RWZJ}',
                type: 'post',
                data: $("#form1").serialize(),
                async: true,
                complete: function(request, status) {
                    var txt = request.responseText;
                    if("true" == txt) {
                        var url="<%=webapp%>/spscqycc/spscqyccAction!ccbllist.dhtml?map.rwzj=${map.RWZJ}";
                        document.getElementById("ccbl").src=url;
                    } else {
                        endWait();
                    }
                }
            });
        }
     
  • 相关阅读:
    uoj 36 玛里苟斯
    readlink
    Endless Spin
    rm
    rmdir
    [学习笔记]min-max容斥
    cp
    [HAOI2015]按位或
    java实现第四届蓝桥杯公式求值
    java实现第四届蓝桥杯危险系数
  • 原文地址:https://www.cnblogs.com/zhuyeshen/p/10685381.html
Copyright © 2011-2022 走看看