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.
我想将我选择的元素高度增加 10 像素。有没有更好的方法而不选择元素两次。
例如
$(this).height($(this).height()+10);
jquery 中是否有一些方法可以处理我错过的问题?
尝试这样的事情:
$(this).height("+=10");