在jQuery Mobile li中删除图像

时间:2013-03-12 08:53:52

标签: jquery image listview jquery-mobile

每次用户点击一行时,我希望在jQuery列表视图中切换一个图标。

Here is the complete source code

以下代码似乎不起作用:

$(this).remove('img');

我也尝试过:

$(this).remove('icon');

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

尝试以下方法:

$(this).find('img').remove();

Here's the updated Fiddle