让输入框出现在下拉菜单中选择 HTML / Javascript

发布于 2024-10-15 05:17:03 字数 177 浏览 5 评论 0原文

嘿,我有一个用 html 完成的下拉框,我只是想知道当选择特定的下拉项时是否可以显示 2 个单独的文本框。 所以

下拉菜单 - 第 1 项 - 第 2 项 - 项目 3

如果选择项目 3,则

出现输入文本框 1 - 出现输入文本框 2

谢谢大家

Hey, I have a drop down box done in html and I'm just wondering if it would be possible to have 2 separate text boxes appear when a specific drop down item is selected.
So

Dropdown
- Item 1
- Item 2
- item 3

If item 3 is selected then

input text box 1 appears - input text box 2 appears

Thanks guys

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音盲 2024-10-22 05:17:03
<select id='combo'>
   <option>...</option>
</select>
<input  id='text1' style='display: none'/>
<input  id='text2' style='display: none'/>
<script>
// Disclaimer: using a library (jquery, ext-core, prototype) to bind events and change 
// styles is safer across browsers
document.getElementById('combo').onchange = function() {
  var display = this.selectedIndex == 2 ? "inline" : "none";
  document.getElementById('text1').style.display = display;
  document.getElementById('text2').style.display = display;
}
</script>
<select id='combo'>
   <option>...</option>
</select>
<input  id='text1' style='display: none'/>
<input  id='text2' style='display: none'/>
<script>
// Disclaimer: using a library (jquery, ext-core, prototype) to bind events and change 
// styles is safer across browsers
document.getElementById('combo').onchange = function() {
  var display = this.selectedIndex == 2 ? "inline" : "none";
  document.getElementById('text1').style.display = display;
  document.getElementById('text2').style.display = display;
}
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文