页面卡死……
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>使用clone()方法复制元素</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h3>使用clone()方法复制元素</h3>
<span class="red" title="hi">我是美猴王</span>
<script type="text/javascript">
$("body").append($("span").clone());
/*下面这一句和上面一句的功能不应该是一样的?为啥想添下面一句话的时候,输到"appendTo("页面就会卡死呢?还是两句不能同时出现在一个页面中?*/
$(".red").clone().appendTo($("body"));
</script>
</body>
</html>