vue 구성 요소 에서 iframe 요 소 를 사용 하 는 예제 코드

3428 단어 vueiframe원소
본 고 는 vue 구성 요소 에서 iframe 요 소 를 사용 하 는 예제 코드 를 소개 하고 여러분 에 게 공유 합 니 다.구체 적 으로 다음 과 같 습 니 다.
이 페이지 에서 vue 구성 요소 의 하이퍼링크 를 보 여 줘 야 합 니 다.주소 표시 줄 이 바 뀌 지 않 는 방법:

<template>
 <div class="accept-container">
   <div class="go-back" v-show="goBackState" @click="goBack">GoBack</div>
<ul>
 <li v-for="item in webAddress">
  <a :href="item.link" rel="external nofollow" target="showHere" @click="showIframe">{{item.name}}</a>
 </li>
</ul>
<iframe v-show="iframeState" id="show-iframe" frameborder=0 name="showHere" scrolling=auto src=""></iframe>
 </div>
</template>
<script>
export default {
 name: 'hello',
 data () {
 return {
  iframeState:false,
  goBackState:false,
  webAddress: [
  {
   name:'segmentFault',
   link:'https://segmentfault.com/a/1190000004502619'
  },
  {
   name:'  ',
   link:'http://vuex.vuejs.org/'
  },
  {
   name:'  ',
   link:'http://www.yyyweb.com/377.html'
  }
  ]
 }
 },
 mounted(){
 const oIframe = document.getElementById('show-iframe');
 const deviceWidth = document.documentElement.clientWidth;
 const deviceHeight = document.documentElement.clientHeight;
 oIframe.style.width = deviceWidth + 'px';
 oIframe.style.height = deviceHeight + 'px';
 },
 methods:{
 goBack(){
  this.goBackState = false;
  this.iframeState = false;
 },
 showIframe(){
  this.goBackState = true;
  this.iframeState = true;
 }
 }
}
</script>
<style scoped>
</style>
같은 층 의 요 소 를 덮어 쓰 지 않 고 추가 할 수 있 도록 해 야 합 니 다.

<iframe id="dialogFrame" frameborder="0" scrolling="no" style="background-color:transparent; position: absolute; z-index: -1; width: 100%; height: 100%; top: 0;left:0;"></iframe>
그러나 html 5 에는 대화 상자 에 사용 할 새로운 dialog 요소 가 있 습 니 다.
iframe 의 방법:
iframe 내용 가 져 오기:

 var iframe = document.getElementById("iframe1");
 var iwindow = iframe.contentWindow;
 var idoc = iwindow.document;
  console.log("window",iwindow);//  iframe window  
  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
적응 iframe:
즉 1 스크롤 바 를 제거 하고 2 너비 높이 설정

var iwindow = iframe.contentWindow;
var idoc = iwindow.document;
iframe.height = idoc.body.offsetHeight;
예:

좋은 웹페이지 즐겨찾기