gpt4 book ai didi

javascript - 无法更改按钮颜色

转载 作者:行者123 更新时间:2023-11-30 11:35:22 25 4
gpt4 key购买 nike

尝试做一些看似行不通的 super 基本操作:

HTML

<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
</head>
<body>
<button style="margin: 10px; color:white; background-color: #4CAF50; font-size:40px;" type="button" id="aaa" > גבע</button>
</body>

JS

$("aaa").click(function () {
$(this).css('backgroundcolor', 'white');
});

按钮颜色似乎没有改变。我做错了什么?

谢谢!

最佳答案

需要两个改变

  1. id选择需要jquery中的#
  2. backgroundColor 更改为 backgroundColorbackground-color

$("#aaa").click(function() {
$(this).css('backgroundColor', 'white');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button style="margin: 10px; color:white; background-color: #4CAF50; font-size:40px;" type="button" id="aaa"> גבע</button>

关于javascript - 无法更改按钮颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44691247/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com