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.
我有
<div class="image-mask"> <img class="alignright" src="image.png" /> </div>
我想使用 jQuery 将类从图像移动到父 div。
非常感谢!!
这应该有效:
$('.alignright').removeClass('alignright').parent().addClass('alignright');