我的代码如下:
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js">/script>
</head>
<body>
<p id="test1">This is a paragraph.</p>
<button id="btn1">Set Text</button>
</body>
</html>
和我的jQuery代码:
$(document).ready(function(){
$("#btn1").click(function(){
$("#test1").text("Hello world!");
$("#test1").attr('background-color','#F00');
});
});
它会更改文本,但不会更改颜色。我的代码有什么问题?jsfiddle 链接:http: //jsfiddle.net/m6AnK/2/