Unobstrusive pseudo-classes and attribute selectors emulation in IE
I'm trying to emulate some pseudo-classes and attribute selectors in Internet Explorer 6 and 7, such as :focus
, :hover
or [type=text]
. So far, I've managed to add a class name to the affected elements:
$("input, textarea, select")
.hover(function(){
$(this).addClass("hover");
}, function(){
$(this).removeClass("hover");
})
.focus(function(){
$(this).addClass("focus");
})
.blur(function(){
$(this).removeClass("focus");
});
$("input[type=text]").each(fun开发者_如何学运维ction(){
$(this).addClass("text");
});
However, I'm still forced to duplicate selector in my style sheets:
textarea:focus, textarea.focus{
}
And, to make things worse, IE6 seems to ignore all the selectors when it finds an attribute:
input[type=text], input.text{
/* IE6 ignores this */
}
And, of course, IE6 ignores selectors with multiple classes:
input.text.focus{
/* IE6 ignores this */
}
So I'm likely to end up with this mess:
input[type=text]{
/* Rules here */
}
input.text{
/* Same rules again */
}
input[type=text]:focus{
}
input.text_and_focus{
}
input.text_and_hover{
}
input.text_and_focus_and_hover{
}
My question: is there any way to read the rules or computed style defined for a CSS selector and apply it to certain elements, so I only need to maintain one set of standard CSS?
If you're already depending on javascript with your styles (otherwise, neither :focus
or .focus
work in IE6), I advice you to use IE7.js
by Dean Edwards, which js-enhance ie6.
http://code.google.com/p/ie7-js/
I found this lovely piece of software:
- ie-css3.js CSS3 pseudo-class selector emulation for Internet Explorer 5.5 - 8
It basically covers my requirements (unobtrusive code that doesn't require specific CSS rules), although it doesn't emulate input[type=text]
.
If you know about something else on this line, feel free to add a new answer.
精彩评论