JQuery onClick 预填充
我正在尝试执行以下操作 - 有人可以帮助我吗?
我需要从逗号分隔的文本字段中预先填充“日期”选择下拉列表。
<select id="place">
<option>Manchester</option>
<option>London</option>
</select>
<select id="date">
</select>
所以基本上这就是我正在寻找的...
OnChange“地点”的“监听器”,当“地点”更改时,它将获得文本字段“Place.txt”,例如,如果我选择伦敦,它将获得“London.txt”。 TXT”。这将包含一个带有逗号分隔值的 txt 文件,即。 Date1、Date2、Date3 等。
然后需要用每个日期预先填充“日期”。
I am trying to do the following - could anyone help me out?
I need to pre-populate the "Date" select dropdown from a comma delimited text field.
<select id="place">
<option>Manchester</option>
<option>London</option>
</select>
<select id="date">
</select>
So basically this is what I am looking for ...
OnChange "listener" for Place, when "Place" changes it will get the text field "Place.txt" so for example, if I select London, it will get "London.txt". This will contain a txt file with comma delimited values ie. Date1, Date2, Date3 etc.
This then needs to pre-populate the "Date" with each date.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。未经测试,您可能需要稍微尝试一下,但这是总体思路
try this. untested you may have to play with it a little bit but this is the general idea