我正在尝试根据来自选择下拉框中的用户输入来显示/隐藏各种 div。实际上,首先,我试图直接实现jQuery dropdown hide show div based on value中显示的代码,但是我缺少一些简单的东西,这会阻止它在http://www.intertwineimages.com/form2上工作.html 这是我的完整代码,谁能指出我正确的方向?
<html>
<script type="text/javascript">
hideAllDivs = function () {
$("#hourly").hide();
$("#per_diem").hide();
$("#fixed").hide();
};
handleNewSelection = function () {
hideAllDivs();
switch ($(this).val()) {
case '1':
$("#hourly").show();
break;
case '2':
$("#per_diem").show();
break;
case '3':
$("#fixed").show();
break;
}
};
$(document).ready(function() {
$("#project_billing_code_id").change(handleNewSelection);
// Run the event handler once now to ensure everything is as it should be
handleNewSelection.apply($("#project_billing_code_id"));
});
</script>
<select id="project_billing_code_id">
<option value="">Pick one</option>
<option value="1">1-Hourly</option>
<option value="2">2-Per Diem</option>
<option value="3">3-Fixed</option>
</select>
<div id="hourly">Hourly</div>
<div id="per_diem">Per Diem</div>
<div id="fixed">Fixed</div>
</html>
编辑:更正的代码
<html>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
hideAllDivs = function () {
$("#hourly").hide();
$("#per_diem").hide();
$("#fixed").hide();
};
handleNewSelection = function () {
hideAllDivs();
switch ($(this).val()) {
case '1':
$("#hourly").show();
break;
case '2':
$("#per_diem").show();
break;
case '3':
$("#fixed").show();
break;
}
};
$(document).ready(function() {
$("#project_billing_code_id").change(handleNewSelection);
// Run the event handler once now to ensure everything is as it should be
handleNewSelection.apply($("#project_billing_code_id"));
});
</script>
<select id="project_billing_code_id">
<option value="">Pick one</option>
<option value="1">1-Hourly</option>
<option value="2">2-Per Diem</option>
<option value="3">3-Fixed</option>
</select>
<div id="hourly">Hourly</div>
<div id="per_diem">Per Diem</div>
<div id="fixed">Fixed</div>
</html>