好吧,我真的很想丢失一些东西或者我疯了。这是我遇到问题的代码,它位于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.
答案 0 :(得分:3)
getElementsByName
是document
的方法,元素没有这种方法。