jQuery clone( ) 方法可用于克隆元素,克隆出来的元素包含原元素子节点、文本以及属性。
语法格式:
$(selector).clone(true[false])
参数:默认为false,不复制原元素的事件。若设置为true,可复制原元素的事件。
示例:
(1)复制原元素的子节点,文本以及属性
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="../jQuery/jQuery.js"></script>
<script>
$(document).ready(function(){
$("li").click(function(){
$("ul").append($(this).clone());
})
})
</script>
<style>