0

好吧,我真的错过了什么,否则我疯了。这是我遇到问题的代码,它位于 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.
4

1 回答 1

3

getElementsByName是 的方法document,元素没有这样的方法。

于 2013-08-15T18:02:04.423 回答