开发者

In jQuery, fontSize and font-size are both valid in the css() function, but in animate(), it has to be fontSize?

In j开发者_Go百科Query, fontSize and font-size are both valid in the css() function, but in animate(), it has to be fontSize?

Are there more rules for other functions?

so the safest is still the form fontSize

Update: our project uses jQuery 1.3.1, and it will not work... but I just checked that 1.4.2 will work with "font-size" even for animate.


from the .animate() API page:

The .animate() method allows us to create animation effects on any numeric CSS property. The only required parameter is a map of CSS properties. This map is similar to the one that can be sent to the .css() method, except that the range of properties is more restrictive.


in css() function if the property have "-" (such as font-size) you must use " " wrap it

$("p").css({ color: "#ff0011", background: "blue" }); 

$("p").css({ "margin-left": "10px", "background-color": "blue" }); 

in animate() function if the property have "-" you must use CamelCase

e.g. marginLeft replace margin-left

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜