gpt4 book ai didi

javascript - JQuery 只查看一个 DIV ID 来获取值

转载 作者:行者123 更新时间:2023-11-28 09:55:29 28 4
gpt4 key购买 nike

我的一个网页上有以下代码,它隐藏了与某些用户无关的表单的某些部分。但是,由于某种原因,现在仅绑定(bind) selectAttending 变量。我想传递一个文本框和两个下拉列表的值,但仅传递此下拉列表的值。有什么建议么?

<html>    
<input class="input-xlarge focused" id="txtName" type="text" >
<select name=selectAttending id=selectAttending>
<option>Select One...</option>
<option>Yes</option>
<option>No</option>
</select>
<select id=selectGender>
<option selected="selected">Select One...</option>
<option>Male</option>
<option>Female</option>
</select>

<script language=javascript>
$("#selectAttending").change(function () {
if ($('#selectAttending option:selected').text() == "No") {
$('#ifAttending').hide();
} else if ($('#selectAttending option:selected').text() == "Yes") {
$('#ifAttending').show();
} else {
$('#ifAttending').show();
}
});
</script>

最佳答案

jQuery 选择创建一个元素列表;当您使用 jQuery 选择功能时,例如$,如果要处理多个结果,则需要迭代结果。尝试使用像 each 这样的函数。请参阅this S/O question ,以及相关的jQuery docs .

关于javascript - JQuery 只查看一个 DIV ID 来获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10129350/

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