gpt4 book ai didi

javascript - 在 jQuery 中查找激活的单选按钮

转载 作者:行者123 更新时间:2023-11-29 18:32:47 25 4
gpt4 key购买 nike

当单选按钮 1 被选中时打印 hello 1,当单选按钮 2 被选中时打印 hello 2。我该怎么做?

<form name="form" id="form">
First Class<input name="seat_class" id="a1" type="radio" value="First Class">
Second Class <input name="seat_class" type="radio" value="Standard Class"
</form>

最佳答案

试试这个:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">

$(document).ready(function () {
$("#radio1, #radio2").change(function(event) {
if($(this).is(':checked')) {
alert($(this).data("text"));
}
});
});

</script>
<input type="radio" id="radio1" name="test" data-text="hello 1">
<input type="radio" id="radio2" name="test" data-text="hello 2">

关于javascript - 在 jQuery 中查找激活的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6123675/

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