我定义了一个 html 表单。我有一个按钮供用户选择他的职业。如果他的职业恰好是学生,那么我需要动态生成另一个新按钮。如果用户选择学生以外的任何内容,那么我不需要任何新按钮。我不确定该怎么做。我使用 jquery 吗?我不知道使用 jquery 。有人可以帮忙吗?任何指针
谢谢。
<?php
?>
<script language="javascript" type="text/javascript">
$(document).ready(function()
{
$('#occupation').change(function()
{
if($(this).val() == 'Student')
{
$('#school').show();
} else {
$('#school').hide();
}
});
});
</script>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
<form>
<select name="occupation" id="occupation">
<option value="">- Select Occupation -</option>
<option value="Worker">Worker</option>
<option value="Student">Student</option>
</select>
<select name="school" id="school" style="display: none;">
<option value="">Select School Type</option>
<option value="4 Year">4 Year</option>
<option value="2 Year">2 Year</option>
</select>
</form>
</body>
</html>