本文介紹了vue組件中使用iframe元素的示例代碼,分享給大家,具體如下:
創(chuàng)新互聯(lián)建站主營(yíng)武清網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,app軟件開發(fā),武清h5成都微信小程序搭建,武清網(wǎng)站營(yíng)銷推廣歡迎武清等地區(qū)企業(yè)咨詢
需要在本頁(yè)面中展示vue組件中的超鏈接,地址欄不改變的方法:
GoBack
需要使同層元素不被覆蓋,可以加
不過(guò)html5有新的dialog元素用于對(duì)話框。
iframe的一些方法:
獲取iframe內(nèi)容:
var iframe = document.getElementById("iframe1"); var iwindow = iframe.contentWindow; var idoc = iwindow.document; console.log("window",iwindow);//獲取iframe的window對(duì)象 console.log("document",idoc); //獲取iframe的document console.log("html",idoc.documentElement);//獲取iframe的html console.log("head",idoc.head); //獲取head console.log("body",idoc.body); //獲取body
自適應(yīng) iframe:
即1去掉滾動(dòng)條,2設(shè)置寬高
var iwindow = iframe.contentWindow; var idoc = iwindow.document; iframe.height = idoc.body.offsetHeight;
例子:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。