Table of Contents
回复讨论(解决方案)
Home Web Front-end HTML Tutorial How to solve the incompatibility problem of div:hover in ie6_html/css_WEB-ITnose

How to solve the incompatibility problem of div:hover in ie6_html/css_WEB-ITnose

Jun 24, 2016 pm 12:11 PM

像淘宝网www.taobao.com中分类有服饰、数码、护肤等,当鼠标移上去,div边框显示橙色的效果怎么弄出来的,div:hover在ff、ie7、ie8中都能实现,唯独ie6不能兼容div:hover,该怎样解决这个问题使得效果和淘宝网的这个一样在ie6中也可以实现该效果
 


回复讨论(解决方案)

<!--[if lte IE 6]><script type="text/javascript" language="Javascript" src="hover.js"></script><![endif]-->
Copy after login


/* 这个是普通样式,定义给需要效果的元素 */.hovereffect {border:1px solid blue;}/* 这个是hover样式 */.hovereffect:hover,.lay-on {background: #eee;border:1px solid red;}
Copy after login




<div class="hovereffect">div的hover</div><p class="hovereffect">p的hover</p>
Copy after login

ie6是css1.0,不支持非a的hover伪类,若想实现hover效果需要写js

将下面代码 写入htc文件中

/*解决ie6.0 的hover兼容问题*/<attach event="ondocumentready" handler="parseStylesheets" /><script>var csshoverReg = /(^|\s)(([^a]([^ ]+)?)|(a([^#.][^ ]+)+)):(hover|active)/i,currentSheet, doc = window.document, hoverEvents = [], activators = {    onhover:{on:'onmouseover', off:'onmouseout'},    onactive:{on:'onmousedown', off:'onmouseup'}}function parseStylesheets() {    if(!/MSIE (5|6)/.test(navigator.userAgent)) return;    window.attachEvent('onunload', unhookHoverEvents);    var sheets = doc.styleSheets, l = sheets.length;    for(var i=0; i<l; i++)        parseStylesheet(sheets[i]);}    function parseStylesheet(sheet) {        if(sheet.imports) {            try {                var imports = sheet.imports, l = imports.length;                for(var i=0; i<l; i++) parseStylesheet(sheet.imports[i]);            } catch(securityException){}        }        try {            var rules = (currentSheet = sheet).rules, l = rules.length;            for(var j=0; j<l; j++) parseCSSRule(rules[j]);        } catch(securityException){}    }    function parseCSSRule(rule) {        var select = rule.selectorText, style = rule.style.cssText;        if(!csshoverReg.test(select) || !style) return;        var pseudo = select.replace(/[^:]+:([a-z-]+).*/i, 'on$1');        var newSelect = select.replace(/(\.([a-z0-9_-]+):[a-z]+)|(:[a-z]+)/gi, '.$2' + pseudo);        var className = (/\.([a-z0-9_-]*on(hover|active))/i).exec(newSelect)[1];        var affected = select.replace(/:(hover|active).*$/, '');        var elements = getElementsBySelect(affected);        if(elements.length == 0) return;        currentSheet.addRule(newSelect, style);        for(var i=0; i<elements.length; i++)            new HoverElement(elements[i], className, activators[pseudo]);    }function HoverElement(node, className, events) {    if(!node.hovers) node.hovers = {};    if(node.hovers[className]) return;    node.hovers[className] = true;    hookHoverEvent(node, events.on, function() { node.className += ' ' + className; });    hookHoverEvent(node, events.off, function() { node.className = node.className.replace(new RegExp('\\s+'+className, 'g'),''); });}    function hookHoverEvent(node, type, handler) {        node.attachEvent(type, handler);        hoverEvents[hoverEvents.length] = {            node:node, type:type, handler:handler        };    }    function unhookHoverEvents() {        for(var e,i=0; i<hoverEvents.length; i++) {            e = hoverEvents[i];            e.node.detachEvent(e.type, e.handler);        }    }function getElementsBySelect(rule) {    var parts, nodes = [doc];    parts = rule.split(' ');    for(var i=0; i<parts.length; i++) {        nodes = getSelectedNodes(parts[i], nodes);    }    return nodes;}    function getSelectedNodes(select, elements) {        var result, node, nodes = [];        var identify = (/\#([a-z0-9_-]+)/i).exec(select);        if(identify) {            var element = doc.getElementById(identify[1]);            return element? [element]:nodes;        }               var classname = (/\.([a-z0-9_-]+)/i).exec(select);        var tagName = select.replace(/(\.|\#|\:)[a-z0-9_-]+/i, '');        var classReg = classname? new RegExp('\\b' + classname[1] + '\\b'):false;        for(var i=0; i<elements.length; i++) {            result = tagName? elements[i].all.tags(tagName):elements[i].all;            for(var j=0; j<result.length; j++) {                node = result[j];                if(classReg && !classReg.test(node.className)) continue;                nodes[nodes.length] = node;            }        }                  return nodes;    }</script>
Copy after login


页面中添加引用
 body        {            /*        	首先不支持绝对路径,只支持相对路径。        	其次,是相对于当前ASPX网页的相对路径,和CSS文件的位置无关。             */            behavior: url(../css/hover.htc); /*可在IE6,7中对非<a>元素使用hover等伪类*/        }
Copy after login


可以用table模拟

也可以用jquery写:

<div class="test"></div>
Copy after login

<script type="text/javascript">$document.ready(function(){    $('.test').mouseover(function(){        $('.test').css({boder:orange 1px solid});    });    $('.test').mouseout(function(){        $('.test').css({boder:blue 1px solid});    });});</script>
Copy after login

自己测试了下,上楼的写法好像有点问题啊


2楼可以!谢谢。

感谢2楼的同学,我困惑了很久的问题得到解决
再次谢谢你,谢谢网络。

2楼  hover.js   里面怎么写的??

没必要搞得这么复杂,
div:hover{zoom:1;XXX你的样式} 
div:hover .xxxclass{XXX你的样式}

对了    ie6 相对css是1.0,只对a标签有hover有用,非a标签没用,但是css2.0中,基本所有的都可以。

我也遇到这个问题了啊~~不过重新引入一个文件来解决好麻烦啊~~希望有更简单的办法

用是会用了,就是写着就傻眼了

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? Apr 05, 2025 am 06:15 AM

To achieve the effect of scattering and enlarging the surrounding images after clicking on the image, many web designs need to achieve an interactive effect: click on a certain image to make the surrounding...

How to implement adaptive layout of Y-axis position in web annotation? How to implement adaptive layout of Y-axis position in web annotation? Apr 04, 2025 pm 11:30 PM

The Y-axis position adaptive algorithm for web annotation function This article will explore how to implement annotation functions similar to Word documents, especially how to deal with the interval between annotations...

HTML, CSS, and JavaScript: Essential Tools for Web Developers HTML, CSS, and JavaScript: Essential Tools for Web Developers Apr 09, 2025 am 12:12 AM

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

See all articles