Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个 html 选择元素,用户可以使用它来选择他最喜欢的东西,或者如果他最喜欢的东西不在列表中,还有一个选择选项“定义你自己的”,如果你点击它,选择变成文本输入。
也许有一个jquery插件/解决方案?
在 HTML 中创建您的选择列表。在 HTML 中创建您的输入。使用 CSS 隐藏输入display:none。然后使用 jQuery(不要忘记在页面开头包含 jquery 库).change()功能来检查您的项目是否被选中。当它被选中时,只需执行:$("#selectlist").hide(); $("#inputfield").show();
display:none
.change()
$("#selectlist").hide(); $("#inputfield").show();