根据第一个下拉列表的选定值动态创建文本框而不是下拉列表
我即将实现我计划要做的事情,请参阅以下代码:
我唯一希望更改的是,我希望生成一个文本框,而不是根据第一个下拉列表的选定值创建 tags
下拉列表反而。
这样做的原因是,它的选项太多,无法成为下拉菜单,因此我希望将其设为文本框,然后希望在其工作后为其添加一些自动完成功能。
我想为其生成文本框而不是下拉列表的一些标签
示例是所有escherproperties - 例如escherpropertyname、escherpropertynumber等。
非常感谢任何帮助和建议。
问候,
马丁
I'm almost there in achieving out what I have set out to do, please see the following code:
The only thing I wish to change is, instead of creating a tags
dropdown based on the first drop-down's selected value I wish to generate a text box instead.
The reason for this is that there are simply too many options for it to be a dropdown so I'm hoping to make it a textbox and then hopefully add some auto-complete functionality to it once it is working.
An example of some tags
that I would like to generate a textbox for rather than a drop-down would be all of the escherproperties - e.g. escherpropertyname, escherpropertynumber etc.
Any help and suggestions are much appreciated.
Regards,
Martin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会做以下事情:
第 1 - 为每个标签标题和文本框标签标题添加唯一的 ID 标签...这样您就可以轻松引用您想要的确切标签。
第二 - 像这样使用 .change() jquery 函数
I would do the following:
1st - add a unique ID tag to each tag heading and textbox tag headings...this way you can easily reference the exact or tags you want.
2nd - use the .change() jquery function like so