这个 HTML:
<div class="editable" contentEditable="true">
<span class="empty">change me</span>
</div>
这个jQuery:
$(".empty").click(function() {
$(this).css("color","#000");
$(this).html(" ");
});
没有像我希望的那样工作(或根本没有)。我想这样做,当用户单击跨度中的“更改我”文本时,字体颜色变为黑色并且跨度中的现有文本消失。