选择下拉菜单选项时需要填写多个文本字段
由于某种原因,此代码在 IE9 中不起作用(无法尝试其他版本的 IE)。尝试后,它在 Chrome 和 Firefox 中运行良好。当选择下拉项时,文本框会显示消息“未定义”。
我无法弄清楚出了什么问题,我希望它主要在 IE9 中工作...非常感谢任何帮助..
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..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
}
停止函数printColorAndGroup
。onchange
函数中,您可以使用this
传递选择。因此select.options[...]
将变得可能且更清晰。[0]
。更改版本: http://jsfiddle.net/pimvdb/RemPF/1/
这是一个文字对象表示法:
这就是 ID 的工作方式:
并且您可以使用以下方式获取元素:
这就是传递选择的工作方式:
使用以下 JavaScript:
printColorAndGroup
with a}
.onchange
function, you can pass the select withthis
. Soselect.options[...]
would then be possible and cleaner.[0]
each time.Altered version: http://jsfiddle.net/pimvdb/RemPF/1/
This is a literal object notation:
This is how IDs work:
And you can fetch the element with:
This is how passing the select works:
with the following JavaScript:
您在
标记之前缺少结束 }
You're missing a closing } before your
</script>
tag