CSS background image flickering bug in IE6 (background image cache problem in IE6) IE6 will re-send the request for each background image (not local) every time it is used. Even when there is a hover effect, the same background image is only in a different position, and IE6 will re-send the request. This frustrating thing needs to be solved: Copy code The code is as follows:html {filter:expression(document.execCommand("BackgroundImageCache", false, true));} Of course, the disadvantage is that it may slow down the loading speed of the entire page. Most people will choose the js method to implement: Copy code The code is as follows:<script type='text/javascript'> document.execCommand("BackgroundImageCache", false, true); </script> Disadvantages: Errors will occur if executed in browsers such as Firefox. So you need to determine whether it is an IE browser, using the judgment method provided by jQuery as follows: Copy code The code is as follows:<script type='text/javascript'> if ($.browser.msie) { document.execCommand("BackgroundImageCache", false, true); } </script> An even simpler approach is to use IE's conditional comments: Copy code The code is as follows:<!--[if lt IE 7]> <script>document.execCommand("BackgroundImageCache",false,true);</script> <![endif]--> |
<<: Use CSS blend modes and SVG to dynamically change the color of your product images
>>: How to use IDEA to create a web project and publish it to tomcat
Let's talk about some problems I have encounte...
Table of contents 1. Proxy in LAN 2. Intranet pen...
Preface Recently, I encountered a program using S...
CocosCreator version: 2.3.4 Most games have layer...
If the developer uses Dockerfile to build the ima...
After reinstalling my computer recently, I downlo...
Vertical Split Vertical splitting refers to the s...
Preface This article mainly introduces the use an...
Table of contents Preface: What is waterfall layo...
MySQL row to column operation The so-called row-t...
Environmental Statement Host OS: Cetnos7.9 Minimu...
When releasing a project, you will often encounte...
Docker image download is stuck or too slow I sear...
I think editors are divided into two categories, ...
Error message: Job for mysqld.service failed beca...