gpt4 book ai didi

javascript - 根据按钮 ID 检测单选按钮更改

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

在某些情况下,我必须检测单选按钮的变化。问题是应用程序只有它感兴趣的按钮的 ID。例如,给定该 HTML 片段:

<label class="required">Type</label><br/>
<span class="vertical">
<input checked="checked" id="diabetes_type-none" name="diabetes_type" type="radio" value="none" /><label for="diabetes_type-none">No diabetes</label><br />
<input id="diabetes_type-dm1" name="diabetes_type" type="radio" value="dm1" /><label for="diabetes_type-dm1">DM1</label><br />
<input id="diabetes_type-dm2" name="diabetes_type" type="radio" value="dm2" /><label for="diabetes_type-dm2">DM2</label><br />
<input id="diabetes_type-other" name="diabetes_type" type="radio" value="other" /><label for="diabetes_type-other">Other type</label>
<input class="small free" id="diabetes_type-other_more" name="diabetes_type-other_more" type="text" />
</span>

并且给定 ID“diabetes_type-other”,每次用户选中或取消选中“其他类型”按钮时,应用程序必须执行一些代码。代码必须在用户单击此单选按钮或用户单击任何其他按钮取消选中先前的“其他类型”选中按钮时执行。如果用户单击 DM1,然后单击 DM2,则不应执行该功能。这是我的方法:

$("#" + _var).change(function() {
alert('changed');
});

这里的问题是代码是当用户点击“其他类型”而不是当用户取消选中时触发该功能。

另一种方法是获取电台名称,然后执行如下操作:

_radioName = "diabetes_type";  // Obtain programmatically
$("input[name=" + _radioName + "]").change(function() {
alert('changed');
});

现在的问题是这个函数总是被触发,点击任何按钮,我只需要在用户选中或取消选中给定的单选按钮时触发该函数。你可以玩this jsfiddle .

最佳答案

fiddle :http://jsfiddle.net/sn7eU/1/
检查这段代码,它应该符合你的愿望:

var _radioName = "diabetes_type";  // Obtain programmatically
var _var = "diabetes_type-other";

#(document).ready(function(){
var lastChecked = false;
$("input[name=" + _radioName + "]").change(function() {
if(this.id == _var) lastChecked = true;
else if(lastChecked){
/*The radio input isn't "other". Check if the last checked element equals
"other" (lastChecked == true). If true, set lastChecked to false*/
lastChecked = false;
} else return; /*The input isn't "other", and the last checked element isn't
"other". Return now. */

alert('changed');
});
});

关于javascript - 根据按钮 ID 检测单选按钮更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7544890/

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