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 列表视图中切换一个图标。
这是完整的源代码。
以下代码似乎不起作用:
$(this).remove('img');
我也试过:
$(this).remove('icon');
任何的想法?
尝试以下操作:
$(this).find('img').remove();
这是更新的 Fiddle。