如果我从下拉列表中选择一个类别,我有显示/隐藏文本框的代码。它工作正常,但我想要的是如果有人选择了不同的类别,那么文本框就会消失或被另一个文本框替换。例如:如果我选择食物,则会出现一个文本框,如果我选择不同的类别,则先前的文本框会再次隐藏而不刷新整个页面。这是我到目前为止所得到的:
<script language="javascript" type="text/javascript">
function addSubject(){
selectedSubject = document.getElementById('category').value
if (selectedSubject == 'food'){
document.getElementById('box').style.display = 'block';
}
}
</script>
<?
include ('connect.php');
$query="SELECT id, name FROM category ";
$result=mysql_query($query);
?>
<form>
<select name="category" id="category" onchange="addSubject()">
<option>Select Category</option>
<?php while($row=mysql_fetch_array($result)) { ?>
<option value=<?php echo $row['id']?>><?php echo $row['name']?></option>
<?php } ?>
</select>
<div class="box" id="box" style="display: none;">
<div>
<span>Title :</span><input type="text" name="text" size="8" maxlength="7" />
</div>
</div>
</form>
像往常一样提前感谢