码迷,mamicode.com
首页 > 其他好文 > 详细

iframe中用到的例子

时间:2019-04-10 19:14:43      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:status   func   ons   ==   scroll   idt   txt   serial   upd   

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

iframe中用到的例子

标签:status   func   ons   ==   scroll   idt   txt   serial   upd   

原文地址:https://www.cnblogs.com/zhuyeshen/p/10685381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!