- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
一直在网上寻找进行表格行突出显示的“最佳”方法。
似乎两个主要替代方案是:
1 纯 CSS:tr:hover
2 CSS + Jquery:
$("table").delegate('td','mouseover mouseleave', function(e) {
if (e.type == 'mouseover') {
$(this).parent().addClass("tr-hover");
}
else {
$(this).parent().removeClass("tr-hover");
}
});
我不知道现在什么是最佳实践。据我所知,只有 IE7 不能与纯 CSS 选项正常工作。
或者,我应该考虑其他选择吗?
最佳答案
使用 CSS :hover
方法。如果设置了 DOCTYPE,它也适用于 IE7+。此声明由 this MSDN article 支持.
... improve CSS2.1 compliance. All this work (with the exception of transparent PNGs) has been done under the <!DOCTYPE> switch only, since all changes required behavioral updates to be more in line what the CSS spec specifies.
. . .
We also extended our existing implementations to comply with W3C specifications:
- Enable :hover on all elements not just on
<a>
根据个人测试(以及 this source),符合标准的模式在以下情况下不会激活:
http://
也有效,其他协议(protocol)无效。它可以与所有其他 DOCTYPE 一起激活,包括 XHTML、XML 和未知的 DOCTYPE。
<小时/>CSS 的优点:
jQuery 的优点:
关于jquery - 表格行突出显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9299437/
有没有一种方法可以“标记”对象的属性,使它们在反射中“突出”? 例如: class A { int aa, b; string s1, s2; public int AA
我是一名优秀的程序员,十分优秀!