真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

vue組件中使用iframe元素的示例代碼

本文介紹了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組件中的超鏈接,地址欄不改變的方法:




需要使同層元素不被覆蓋,可以加

復(fù)制代碼 代碼如下:


不過(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;

例子:

復(fù)制代碼 代碼如下:

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


網(wǎng)頁(yè)標(biāo)題:vue組件中使用iframe元素的示例代碼
當(dāng)前地址:http://weahome.cn/article/poopcg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部