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.
如何使用匹配的类更改最近列的高度使用jquery单击按钮时说abc这就是我有这个按钮要应用哪个功能要更改此行的高度
我能做些什么
使用这样的东西
$(document).ready(function(){ $("#submit").click(function(){ $(this).closest(".abc").width(20) }) })
尝试这个:
$("#btn").click(function(){ $(this).closest(".abc").css("height","150px"); })