gpt4 book ai didi

javascript - jQuery JavaScript : take action when radio button is selected

转载 作者:可可西里 更新时间:2023-11-01 02:03:44 26 4
gpt4 key购买 nike

我有以下单选按钮,默认情况下没有一个被选中。

<input type="radio" name="location" value="0" /> home
<input type="radio" name="location" value="1" /> work
<input type="radio" name="location" value="2" /> school

我如何检测它们中的任何一个何时被选中。我正在寻找类似点击的东西,但它不起作用

$("input[name=location]").click(function(){
alert("selected");
});

最佳答案

$('input[name=location]').change(function(){
alert(this.checked);
});

关于javascript - jQuery JavaScript : take action when radio button is selected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1693779/

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