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