时间:2021-07-01 10:21:17 帮助过:19人阅读
<font id="id" color="green">
使用$("#id").attr("color") 在ff,chrome中获取到的值是"green",在ie中获取到的值是"#008000"。
所以说,如果使用attr("color")来判断当前的颜色,考虑到兼容性需要同时判断颜色名字以及对应的颜色代码。如:
代码如下:
if($("#id").attr("color") == "green" || $("#id").attr("color") == "#008000" ){
alert("this color is green!!");
}