美文网首页web前端
web选项卡的效果

web选项卡的效果

作者: 万里无风来 | 来源:发表于2019-10-10 10:46 被阅读0次

1.这里就简单的做个效果
HTML代码

<div id='me'>点我</div>
<div id='content'></div>

JS代码

<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.js"></script>
<sxript>
$('#me').click(test);
var test = function(){  
               $("#content").html('<object type="text/html" '+
                     'data="/cmcc/supplier/cmcc_supplier_exa/index.jsp" '+
                     'width="100%" height="600px"></object>'+
                 'onload="myloaddata(this);"');
            }
//自适应内容高度
window.myloaddata=function(ele){
                        ele.height=ele.contentWindow.document.body.scrollHeight+100;
                    }
</script>

相关文章

网友评论

    本文标题:web选项卡的效果

    本文链接:https://www.haomeiwen.com/subject/oqsopctx.html