当前位置:
首页 > Python基础教程 >
-
前端开发( jQuery选择器、筛选器、样式操作、文本操作、属性操作、文档操作(2)
, function () { // clone方法不加参数true,克隆标签但不克隆标签带的事件
$(this).clone().insertAfter(this);
});
$("#b2").on("click", function () { // clone方法加参数true,克隆标签并且克隆标签带的事件
$(this).clone(true).insertAfter(this);
});
</script>
</body>