为什么克隆了两次后,第一个后面有间隙,后面三个却没有?
<!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($(".red").clone());
$(".red").clone().appendTo("body");
</script>
</body>
</html>
为什么克隆了两次后,第一个后面有间隙,后面三个却没有?求解释