我有以下代码:
$(this).children("a:eq(0)").append('<img src="'+ (arrowsvar.down[1]) +'" class="' + (arrowsvar.down[0]) + '" style="border:0;" />' );
现在我想删除最后附加的元素(图像)。请给出建议。
解决方法
你可以使用
:last-child选择器找到最后一个附加的元素,那么你可以
remove它:
$('img:last-child',this).remove(); // get the last img element of the childs of 'this'