我正在尝试根据指定“其他”的下拉菜单显示/隐藏字段,但是只有第一个元素显示,如何在选中时显示li id =“osother”的所有字段?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Show Hide Using Selectbox</title>
<style type="text/css">
#osother{display:none;}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("select").change(function(){
$( "select option:selected").each(function(){
if($(this).attr("value")=="otheros"){
$("#osother").hide();
$("#osother").show();
}
});
}).change();
});
</script>
</head>
<body>
<li>
<p>Operating System: <Select Class="selectmenu" id="whatever" name="OS" onchange="markDirty();" required>
<option value = "">-- Select an Option --</option>
<option value = "Win">Windows</option>
<option value = "ios">iOS</option>
<option value = "otheros">Other</option>
</select>
</p></li>
<li id="osother">
Please Specify: <label id="oslabel"><input name="Other OS" type="text" placeholder="Other OS" size="50" /></label></li>
<li id="osother">
Version: <label id="version"><input name="OSV" type="text" placeholder="OS Version" size="50" /></label></li>
</body>
</html>
答案 0 :(得分:0)
这里有一些错误:
您需要将li
封装在ul
id
需要是唯一的 - 因为它被认为是,选择器只返回(第一个)元素,你应该使用例如而是一个类,允许您在同一分组中选择多个元素
在您的HTML中,您已大写Class
和Select
,这些应为小写
HTML
<ul>
<li>
<p>Operating System:
<select class="selectmenu" id="whatever" name="OS" onchange="markDirty();" required='required'></select>
</p>
</li>
<li class="osother">Please Specify:
<label id="oslabel">
<input name="Other OS" type="text" placeholder="Other OS" size="50" />
</label>
</li>
<li class="osother">Version:
<label id="version">
<input name="OSV" type="text" placeholder="OS Version" size="50" />
</label>
</li>
</ul>
JS
$(document).ready(function () {
$("select").change(function () {
$("select option:selected").each(function () {
if ($(this).attr("value") == "otheros") {
$(".osother").show();
}
});
}).change();
});
答案 1 :(得分:0)
您必须在文档中仅使用一次ID,因此您必须将#osother
更改为.osother
。当下拉列表的值从osother
更改时,也应隐藏字段。
JSFiddle就在这里。
<强> HTML 强>
<ul>
<li>
<p>Operating System:
<Select Class="selectmenu" id="whatever" name="OS" onchange="markDirty();" required>
<option value="">-- Select an Option --</option>
<option value="Win">Windows</option>
<option value="ios">iOS</option>
<option value="otheros">Other</option>
</select>
</p>
</li>
<li class="osother">Please Specify:
<label id="oslabel">
<input name="Other OS" type="text" placeholder="Other OS" size="50" />
</label>
</li>
<li class="osother">Version:
<label id="version">
<input name="OSV" type="text" placeholder="OS Version" size="50" />
</label>
</li>
</ul>
<强> JS 强>
$(document).ready(function () {
$("select").change(function () {
$("select option:selected").each(function () {
if ($(this).attr("value") == "otheros") {
$(".osother").show();
} else {
$(".osother").hide();
}
});
}).change();
});
<强> CSS 强>
.osother {
display:none;
}