私のコードは以下のようなものです:
<!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/