js 代码
html
直接使用 append $(this) 这样的方法,jquery会吧$(this)元素直接从$("#tags_place")中删除,再添加到$("#tags_selected_place")元素中。
$("#tags_selected_place").append($(this));
如果想要保留$(this)原来的位置需要使用$(this).clone()方法
$("#tags_selected_place").append($(this).clone());