在使用$("#id").attr("color") 取得顏色的時候,ie和ff是不同的。舉個簡單的例子:
使用$("#id").attr("color") 在ff,chrome中得到的值是"green",在ie中取得到的值是"#008000"。
所以說,如果使用attr("color")來判斷目前的顏色,考慮到相容性需要同時判斷顏色名字以及對應的顏色代碼。如:
if($("#id"). attr("color") == "green" || $("#id").attr("color") == "#008000" ){
alert("this color is green!!");
}