gpt4 book ai didi

jQuery 更改按钮颜色 onclick

转载 作者:技术小花猫 更新时间:2023-10-29 12:57:08 25 4
gpt4 key购买 nike

当人们回答问题时,我会使用多个按钮。当有人点击按钮时,我如何让按钮改变颜色?我不懂 jQuery,有人告诉我这是最好的选择。

这是我的 HTML 部分的代码:

<div style="text-align: center;"><span style="line-height: 18px; font-family: Arial, Helvetica, sans-serif; font-size: 24px;">In the past three months, how often have you used marijuana?<br />
<p><input type="submit" value=" Never " name="btnsubmit" id="answer" style="width: 200px;" /></p>
<p><input type="submit" value=" Once or Twice " name="btnsubmit" id="answer" style="width: 200px;" /></p>
<p><input type="submit" value=" Monthly " name="btnsubmit" id="answer" style="width: 200px;" /></p>
<p><input type="submit" value=" Daily or Almost Daily " name="btnsubmit" id="answer" style="width: 200px;" /></p>
</span></div>
<div>
<p style="text-align: right;"><a onclick="window.open(this.href,'_parent');return false;" href="/mobile/Static2.aspx"><input type="submit" value=" Next " name="btnsubmit" style="width: 100px;" /></a></p>
</div>

我真的是编码方面的新手,所以任何形式的帮助都将不胜感激!

最佳答案

$('input[type="submit"]').click(function(){
$(this).css('color','red');
});

使用类,演示:- https://jsfiddle.net/BX6Df/

   $('input[type="submit"]').click(function(){
$(this).addClass('red');
});

如果你想在每次点击时切换颜色,你可以试试这个:- https://jsfiddle.net/SMNks/

$('input[type="submit"]').click(function(){
$(this).toggleClass('red');
});


.red
{
background-color:red;
}

针对您的评论更新了答案。

https://jsfiddle.net/H2Xhw/

$('input[type="submit"]').click(function(){
$('input[type="submit"].red').removeClass('red')
$(this).addClass('red');
});

关于jQuery 更改按钮颜色 onclick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16240892/

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