我在.cshtml
中有 Dropdownbox 列表,如下所示:
<div class="form-group">
@Html.Label("Role", new { @class = "col-md-2 control-label" })
<div class="col-md-10">
@Html.DropDownList("Name", null, new { @class = "form-control" })
</div>
</div>
这是我的第一个和第二个div
。
<div class="StudentSection" style="display:none;">
Some contents
</div>
<div class="LecturerSection" style="display:none;">
Some contents
</div>
在.js
<script type="text/javascript">
$(document).ready(function () {
$("#StudentSection").hide();
$("#LecturerSection").hide();
$("#Name").change(function () {
if ($("#Name").val() == "Student") {
$("#StudentSection").show();
$("#LecturerSection").hide();
}
else {
$("#LecturerSection").show();
$("#StudentSection").hide();
}
});
});
</script>
这些代码对我不起作用。
答案 0 :(得分:0)
将"0"
,#StudentSection
更改为#LecturerSection
,.StudentSection
,因为它们似乎是 ID
在演示中看到这个
.LecturerSection
&#13;