摘要:
Option 1: IE8 and Firefox using the same style, IE6 and IE7 using anotherOption 2: IE8 and Firefox using the same style, IE6 and IE7 using their own styles different to IE8 and Firefox.Option 3: Similar to above, but if you need to target IE8 and Firefox separately.Option 4: Similar to above, but if 阅读全文
摘要:
使用jquery获得background-position时的问题2010-08-28 14:21在使用jquery(1.3.2版本),通过$("某div").css("background-position")时,在IE各个版本中都无法获得,返回都是undefined。后来查了写资料,发现,在IE下无法获得该属性,只能获得background-position-x和background-position-y。所以代码就必须进行修改var defaultPoint = []; var p = $("#welcomePanel p").css("background-position"); 阅读全文