我在点击背景时使用Highcharts触发事件:
$("#my-chart").highcharts({
chart: {
type: "pie",
events: {
click: function() {
console.log("I'm working!"); // This is the event I want to trigger
};
}
}
});
var myChart = $("#my-chart").highcharts();
我想在点击图表外的某些内容时触发此事件。例如:
<button>Trigger the Highcharts Event!</button>
<script>
$("button").on('click', function() {
// I'd like to trigger the event here
// $('#my-chart').click(); does nothing
// myChart.chart.events.click(); does nothing
// myChart.events.click(); does nothing
// $('#my-chart').find('rect.highcharts-background').click() does nothing
});
</script>
如何以编程方式触发事件?
我尝试了几件事来获取更多信息。查看arguments.callee.caller.name
,值为""
(空字符串)。
arguments.callee.caller
给了我以下内容:
function (a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}}
Ain没有人有时间破译那个!
更有用的信息是event.target
,即rect.highcharts-background
。触发点击即可。绝对没有。我在上面$('button').click()
函数的评论中进行了一些其他尝试。