我想要的是能够单击图表的标题并执行操作,但是下一个最好的事情是图表级别的单击事件。我能够使用以下方法从事件中找到图表的标题:
this.title.element.innerHTML
this.title.element.innerText
this.title.element.childNodes[0].nodeValue
this.title.element.firstChild.data
this.title.element.firstChild.nodeValue
虽然上述所有工作都在 IE8+ 中工作,但它们在 FireFox 中不起作用。有任何想法吗?