admin管理员组文章数量:1345290
I am trying to make an input tag have a selection of events when I click on it.
It would look something like this? :
<input type="text"/>
<select name="Expiration Month">
<option value="January">January</option>
....
</select>
What I want the image to look like is this.
I am trying to make an input tag have a selection of events when I click on it.
It would look something like this? :
<input type="text"/>
<select name="Expiration Month">
<option value="January">January</option>
....
</select>
What I want the image to look like is this.
Share Improve this question asked Jan 15, 2015 at 19:57 ajl123ajl123 1,2726 gold badges20 silver badges43 bronze badges 4-
What's the idea of this? Anyway, this is not possible,
input
is an empty element, and it can't have HTML. – Teemu Commented Jan 15, 2015 at 19:59 - You'll probably have to simulate that with some javascript and divs. Or use a toolkit that supports this, I think the jQuery UI had something like that – MightyPork Commented Jan 15, 2015 at 19:59
-
Are you looking for an actual input with a dropdown? or are you looking to style your
select
to look like your inputs? – user4433897 Commented Jan 15, 2015 at 20:14 - I want my input to have a dropdown menu of options for months: e.g. jan, feb, march, etc. But I'm looking at javascript/jquery now because I can't find anything using CSS – ajl123 Commented Jan 15, 2015 at 21:44
2 Answers
Reset to default 9Hope this helps!
<form method="post">
<input list="browsers">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
</form>
There are many JS libraries which will help you with the JavaScript and CSS that you need. As an example if you are using JQuery you can use JQuery UI to do what you want.
For more information go to http://jqueryui./autoplete/#bobox
本文标签: javascriptMake input tag into a drop down listStack Overflow
版权声明:本文标题:javascript - Make input tag into a drop down list - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743796662a2540557.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论