Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 CSS 在 jQuery 函数中插入多个属性?对我来说,有必要在 CSS 中插入多个更改。
例如,如果我想改变宽度和高度,我可以这样做:
<script>$(this).css("height","200");</script>
但是如果我想插入同样的宽度和高度呢?
我尝试使用单独的功能和工作来做到这一点,但在内部没有看到不需要每次都打开新功能的示例
是的 :
$(this).css({ "height" : "200", "width" : "200" });
具体看这部分文档
阅读本文档!这应该为您提供相当数量的资源。
http://api.jquery.com/css/
$(this).css({ "height" : x, "width" : y });