iframe is an inline frame that can embed another document in the current HTML page. Generally, you can use iframe to directly embed the iframe tag in the page and then specify src.
#Some people say that iframe is the element with the highest energy consumption and should be used as little as possible. Some people also say that the security of iframe is too poor and their use should be reduced as much as possible. While what they say is true, the power of iframes cannot be ignored, and there is no shortage of companies using it right now.
<iframe></iframe>The tag specifies an inline frame. An inline frame is used to embed another document within the current HTML document.
All major browsers support the
How to use iframe?
Usually we use iframe to directly embed the src specified by the iframe tag on the page.
src: Specifies the URL of the document displayed in .
frameborder: Specifies whether to display the border around . (0 means no border, 1 bit has border).
align: Specifies how to align based on surrounding elements. (left,right,top,middle,bottom).
scrolling: Specifies whether to display scroll bars in . (yes,no,auto)
The src attribute of the iframe in the above code is a local html page
The code is as follows:
<body>
<div id="div" style="height: 300px; background: #ddd;">这是一个外部文件里面的内容</div></body><script>
var div = document.getElementById("div");
console.log(div);</script>
Yes The interactive parts are also written into this page, and the iframe will be automatically transferred to the imported page.
How to get the content inside the iframe?
var iframe = document.getElementById("myrame"); //获取iframe标签
var iwindow = iframe.contentWindow; //获取iframe的window对象
var idoc = iwindow.document; //获取iframe的document对象
console.log(idoc.documentElement); //获取iframe的html
console.log("body",idoc.body);
However, the DOM inside cannot be obtained. It can be obtained from the URL (that is, the imported html file)
Advantages and Disadvantages of iframe
Advantages:
When reloading a page, you do not need to reload the entire page. You only need to reload a frame page in the page (reduce data transmission, reduce The loading time of the web page);
The technology is simple and easy to use, and it is mainly used for pages that do not require search engines to search;
It is convenient for development and reduces the duplication rate of code (such as the header of the page, footer);
Disadvantages:
will generate a lot of pages, which is not easy to manage;
is not easy to print;
Multiple frames The page will increase the service and make http requests;
The browser's back button is invalid, etc.;
Due to many shortcomings and does not conform to the concept of standard web design, it has been abandoned, and the current HTML5 This tag is no longer supported.
The above is the detailed content of How to use iframe. For more information, please follow other related articles on the PHP Chinese website!
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.
The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.
The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.
HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.
HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.
The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.