html page!--[if IE]...![endif]--Detailed introduction to usage

html page!--[if IE]...![endif]--Detailed introduction to usage

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

Recommend

Record of the actual process of packaging and deployment of Vue project

Table of contents Preface 1. Preparation - Server...

Solution to SNMP4J server connection timeout problem

Our network management center serves as the manag...

How to implement scheduled backup of MySQL database

1. Create a shell script vim backupdb.sh Create t...

MySQL learning database backup detailed explanation

Table of contents 1.DB,DBMS,SQL 2. Characteristic...

Analysis and solution of the problem that MySQL instance cannot be started

Table of contents Preface Scenario Analysis Summa...

Use a diagram to explain what Web2.0 is

Nowadays we often talk about Web2.0, so what is W...

Front-end development must learn to understand HTML tags every day (1)

2.1 Semanticization makes your web pages better u...

MySQL sql_mode analysis and setting explanation

When inserting a set of data into the MySQL datab...

CSS realizes the realization of background image screen adaptation

When making a homepage such as a login page, you ...

Unicode signature BOM (Byte Order Mark) issue for UTF-8 files

I recently encountered a strange thing when debug...

Summary of common functions of PostgreSQL regular expressions

Summary of common functions of PostgreSQL regular...

Java example code to generate random characters

Sample code: import java.util.Random; import java...