我需要根据选择表单中的所选选项显示输入字段。
我当时在考虑添加/删除显示类,但无法找出如何将它们绑定在一起的方法,因此无法更改输入字段。
<html lang="en">
<body>
<select name="dropdown[]" id="choose" class="input-select">
<?php foreach ($categoryLists as $categoryList): ?>
<option value="<?php echo $categoryList['id']; ?>" name=" type"><?php echo $categoryList['label']; ?>
</option>
<?php endforeach;?>
</select>
<div class="form1" id="1">
<label for="Input">Input:</label>
<input type="text" name="input" value="input">
</div>
<div class="form1" id="2">
<label for="Input">Input:</label>
<input type="text" name="input" value="input">
</div>
<div class="form1" id="3">
<label for="Input">Input:</label>
<input type="text" name="input" value="input">
</div>
</body>
</html>
我更喜欢香草javascript方式。 谢谢