-1

是否可以使用 CSS 在 jQuery 函数中插入多个属性?对我来说,有必要在 CSS 中插入多个更改。

例如,如果我想改变宽度和高度,我可以这样做:

<script>$(this).css("height","200");</script>

但是如果我想插入同样的宽度和高度呢?

我尝试使用单独的功能和工作来做到这一点,但在内部没有看到不需要每次都打开新功能的示例

4

2 回答 2

3

是的 :

$(this).css({ "height" : "200", "width" : "200" });

具体看这部分文档

于 2013-10-18T20:12:35.993 回答
0

阅读本文档!这应该为您提供相当数量的资源。

http://api.jquery.com/css/

$(this).css({ "height" : x, "width" : y });

于 2013-10-18T20:13:59.760 回答