设置背景颜色切换
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="../Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script src="../Scripts/jquery.cookie.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#tablecolor td").click(function () {
var bgcolor = $(this).css("bakground-color");
$("body").css("background-color", bgcolor);
}).css("cursor","pointer");
});
</script>
</head>
<body>
<table id="tablecolor">
<tr><td style="background-color:Red">红色</td><td style="background-color:Green">绿色</td><td style="background-color:Yellow">黄色</td></tr>
</table>
</body>
</html>
为什么点击的时候不能实现背景颜色的切换啊
------最佳解决方案--------------------测试了一下,是var bgcolor = $(this).css("bakground-color");这句bakground-color少了个字母c,拼错了:
改为
var bgcolor = $(this).css("background-color");
------其他解决方案--------------------var bgcolor = $(this).css("bakground-color");
bakground 少写了一个c
------其他解决方案--------------------alert(bgcolor);
值为undefined
------其他解决方案--------------------我在var bgcolor = $(this).css("bakground-color");这句后面添加一句:alert(bgcolor);
结果输出 未定义,仔细一看发现少了个c。
------其他解决方案--------------------在我测试的时候,楼上已经回复了。。
------其他解决方案--------------------运行的时候它不弹出什么错误,你是怎样调试出来,少了个字母的
------其他解决方案--------------------这不是程序么学好,是英语么学好。
------其他解决方案--------------------楼上分析很详细
------其他解决方案--------------------做程序要信息