任何人都可以解释为什么我不能改变附加元素的背景?非常感谢。 (如果不写更多文字,我就无法提交问题,所以我写了更多文字。)
<!DOCTYPE html>
<head>
<title>TEST</title>
<style>
div {
background:yellow;
width:100px;
height:25px;
border:1px solid black;
margin-bottom:10px;
}
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function(){
$("div").on("click", function(){
$(this).css({"background":"red"});
});
$("button").on("click", function(){
$("<div></div>").appendTo("body");
});
});
</script>
</head>
<body>
<button>add div</button>
<div></div>
</body>