奇怪的JavaScript getElementsByName未定义错误

时间:2013-08-15 17:46:09

标签: javascript undefined

好吧,我真的很想丢失一些东西或者我疯了。这是我遇到问题的代码,它位于onchange事件中:

console.log( (this.parentNode.parentNode) );
// fine prints the elements

console.log( (this.parentNode.parentNode).getElementsByName('otherposition[]') );
// gives me undefined error

(this.parentNode.parentNode).getElementsByName('otherposition[]')[0].style.opacity = '1';
// same error.

1 个答案:

答案 0 :(得分:3)

getElementsByNamedocument的方法,元素没有这种方法。