Copy code The code is as follows:<!--[if IE]><script type="text/javascript" src="resources/scripts/jquery.bgiframe.js"></script><![endif]--> With the above code, jquery.bgiframe.js is loaded only when using IE. This is very important because if you load everything you will waste bandwidth and the page will open slowly! If it is specifically for IE6, change it to if IE6. Copy code The code is as follows:<!--[if IE 6]> <script type="text/javascript" src="resources/scripts/DD_belatedPNG_0.0.7a.js"></script> <script type="text/javascript"> DD_belatedPNG.fix('.png_bg, img, li'); </script> <![endif]--> Or solve the layout problem of different versions of IE. The following only loads ie.css in IE7 Copy code The code is as follows:<!--[if lte IE 7]> <link rel="stylesheet" href="resources/css/ie.css" type="text/css" media="screen" /> <![endif]--> |
<<: 100-1% of the content on the website is navigation
>>: Details of using vue activated in child components
Table of contents Preface 1. Preparation - Server...
Our network management center serves as the manag...
1. Create a shell script vim backupdb.sh Create t...
Table of contents 1.DB,DBMS,SQL 2. Characteristic...
Table of contents Preface Scenario Analysis Summa...
1. Introduction When the amount of data in the da...
Nowadays we often talk about Web2.0, so what is W...
2.1 Semanticization makes your web pages better u...
When inserting a set of data into the MySQL datab...
When making a homepage such as a login page, you ...
Download the MySQL installation package. I downlo...
I recently encountered a strange thing when debug...
Before the arrow was shot, the bow whispered to t...
Summary of common functions of PostgreSQL regular...
Sample code: import java.util.Random; import java...