选择下拉菜单选项时需要填写多个文本字段

发布于 2024-12-05 11:04:40 字数 282 浏览 1 评论 0原文

由于某种原因,此代码在 IE9 中不起作用(无法尝试其他版本的 IE)。尝试后,它在 Chrome 和 Firefox 中运行良好。当选择下拉项时,文本框会显示消息“未定义”。

我无法弄清楚出了什么问题,我希望它主要在 IE9 中工作...非常感谢任何帮助..

代码: http://jsfiddle.net/pimvdb/RemPF/1/

For some reason this code doesn't work in IE9 (could not try other versions of IE). When tried it worked fine in Chrome and Firefox.. Text boxes comes up with message "undefined" when a drop down item is selected.

I am not able to figure out whats wrong, I wanted this working primarily in IE9... Any help is greatly appreciated..

Code: http://jsfiddle.net/pimvdb/RemPF/1/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

百善笑为先 2024-12-12 11:04:40
  1. 您不能使用 } 停止函数 printColorAndGroup
  2. 您应该使用对象作为键/值对,而不是数组。
  3. 您可能想对对象使用文字表示法。
  4. onchange 函数中,您可以使用 this 传递选择。因此 select.options[...] 将变得可能且更清晰。
  5. 除了名称之外,您还可以使用 ID,这样您就不必每次都担心 [0]

更改版本: http://jsfiddle.net/pimvdb/RemPF/1/


这是一个文字对象表示法:

var colors = { apple:   "red",
               grape:   "purple",
               milk:    "white",
               cheese:  "yellow",
               chicken: "white",
               beef:    "red"    };

这就是 ID 的工作方式:

<input type="text" id="food_group" ...>

并且您可以使用以下方式获取元素:

document.getElementById('food_group')

这就是传递选择的工作方式:

<select name="food" onchange="printColorAndGroup(this)">

使用以下 JavaScript:

function printColorAndGroup(select){
var text = select.options[select.selectedIndex].value;
...
  1. You don't stop the function printColorAndGroup with a }.
  2. You should use an object for key/value pairs, not an array.
  3. You might want to use the literal notation for an object.
  4. Inside the onchange function, you can pass the select with this. So select.options[...] would then be possible and cleaner.
  5. Instead of names, you can also use IDs, so you don't have to worry about [0] each time.

Altered version: http://jsfiddle.net/pimvdb/RemPF/1/


This is a literal object notation:

var colors = { apple:   "red",
               grape:   "purple",
               milk:    "white",
               cheese:  "yellow",
               chicken: "white",
               beef:    "red"    };

This is how IDs work:

<input type="text" id="food_group" ...>

And you can fetch the element with:

document.getElementById('food_group')

This is how passing the select works:

<select name="food" onchange="printColorAndGroup(this)">

with the following JavaScript:

function printColorAndGroup(select){
var text = select.options[select.selectedIndex].value;
...
染墨丶若流云 2024-12-12 11:04:40

您在 标记之前缺少结束 }

function printColorAndGroup(){
    var text = document.getElementsByName('food')[0].options[document.getElementsByName('food')[0].selectedIndex].value;
    document.getElementsByName('food_group')[0].value = groups[text];
    document.getElementsByName('food_color')[0].value = colors[text]; 
}

You're missing a closing } before your </script> tag

function printColorAndGroup(){
    var text = document.getElementsByName('food')[0].options[document.getElementsByName('food')[0].selectedIndex].value;
    document.getElementsByName('food_group')[0].value = groups[text];
    document.getElementsByName('food_color')[0].value = colors[text]; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文