I have been working on a project recently - Budou Collection. In short, it is to collect the pictures you like to the Budou page. Many aspects of iframe are used in this process, which can be summarized as follows: 1. As a pop-up layer to cover the bottom If you have ever made a black mask covering the entire page, and the user happens to be using IE6, and there happens to be a select element on the page, then you will have a headache (I won’t go into the principles here). We will find that the pop-up DIV cannot cover the select, so it is our iframe's turn to appear. The logic is as follows: Put an iframe at the same level as the pop-up div Ensure that the z-index of the iframe is smaller than the z-index of the pop-up div Add window resize and scroll events to ensure that the iframe can cover the entire page Part of the code Copy code The code is as follows:var iframe = U.isie6() ? '<iframe style="position:absolute;left:0;top:0;z-index:2000000;filter:Alpha(opacity=0); width:100%;height:' + ds.height + '" frameborder="0"></iframe>' : ''; $container.append(iframe).appendTo($body); 2. Writing cookies across domains There are two domains, a.com and b.com. Under certain conditions, some of the functions of b will appear on page a. Sometimes when operating page a, you need to do some operations on the cookies of domain b.com to facilitate the user's next visit. We only need to add an iframe (dynamic or fixed) to page a, with the src attribute pointing to a proxy page of b, and perform cookie operations on this page. |
>>: The English reading of various special symbols on the keyboard (knowledge popularization)
Today, when I logged into the company's inter...
// It took me a whole afternoon to install this, ...
Common utf8mb4 sorting rules in MySQL are: utf8mb...
Table of contents 1. Overview of the page 2. Infi...
Table of contents Optimization of if judgment 1. ...
Adding the extra_hosts keyword in docker-compose....
1. Purpose: Make the code easier to maintain and ...
Table of contents Preface About webSocket operati...
CJK is the abbreviation of CJK Unified Ideographs...
This article has been included on GitHub https://...
First of all, let me talk to you about my daily l...
1. Caches - Query Cache The following figure is p...
Table of contents Written in front What exactly i...
Table of contents Overview 1. Dependency Injectio...
Table of contents 1. What is a component? 2. Crea...