根据第一个下拉列表的选定值动态创建文本框而不是下拉列表

发布于 2024-10-30 00:50:55 字数 422 浏览 1 评论 0原文

我即将实现我计划要做的事情,请参阅以下代码:

http:// jsfiddle.net/6xPye/2/

我唯一希望更改的是,我希望生成一个文本框,而不是根据第一个下拉列表的选定值创建 tags 下拉列表反而。

这样做的原因是,它的选项太多,无法成为下拉菜单,因此我希望将其设为文本框,然后希望在其工作后为其添加一些自动完成功能。

我想为其生成文本框而不是下拉列表的一些标签示例是所有escherproperties - 例如escherpropertyname、escherpropertynumber等。

非常感谢任何帮助和建议。

问候,

马丁

I'm almost there in achieving out what I have set out to do, please see the following code:

http://jsfiddle.net/6xPye/2/

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 技术交流群。

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

发布评论

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

评论(1

我会做以下事情:
第 1 - 为每个标签标题和文本框标签标题添加唯一的 ID 标签...这样您就可以轻松引用您想要的确切标签。

第二 - 像这样使用 .change() jquery 函数

$("select#dropbox1").change(function(){
  switch($(this).val()){
     case 'escherpropertyname': case 'escherpropertynumber': 
           $("select#dropbox2, $select#dropbox3, $select#dropbox4").css({display:'none'});
           $("input#textbox1, input#textbox2").css({display:'block'});
     break;
   };
});

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

$("select#dropbox1").change(function(){
  switch($(this).val()){
     case 'escherpropertyname': case 'escherpropertynumber': 
           $("select#dropbox2, $select#dropbox3, $select#dropbox4").css({display:'none'});
           $("input#textbox1, input#textbox2").css({display:'block'});
     break;
   };
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文