gpt4 book ai didi

javascript - 尝试更改 .click() 函数中另一个元素的属性

转载 作者:行者123 更新时间:2023-12-03 00:42:18 26 4
gpt4 key购买 nike

我想在使用 jQuery 单击按钮时更改元素的文本颜色。此代码不起作用,请帮忙!

$(document).ready(function() {
$("p").click(function() {
$(this).hide();
});
$("button").click(function() {
$("#colorChange").style.color = "blue";
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p id="colorChange">I should(?) change color when you click mr. button</p>
<button>clickme</button>

最佳答案

希望这有帮助

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
$("button").click(function(){
$("#colorChange").css("color","blue");
});
});
</script>
</head>
<body>

<p id="colorChange">I should(?) change color when you click mr. button</p>
<button>clickme</button>

</body>
</html>

关于javascript - 尝试更改 .click() 函数中另一个元素的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53398689/

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