gpt4 book ai didi

javascript - 工具提示内的(Highcharts)按钮无法触发

转载 作者:行者123 更新时间:2023-12-04 02:21:51 24 4
gpt4 key购买 nike

tooltip里面的按钮被点击时没有任何 Action ,甚至设置了onclick事件。下面是一个例子,

http://jsfiddle.net/emzmvth4/

tooltip: {
useHTML: true,
formatter: function() {
return '<div>' + this.point.date
+ '<br\><span>$' + this.y
+ '</span><br\><button onclick="testAlert()">test test test</button></div>';
},
},



function testAlert() {
alert('test');
};

最佳答案

将工具提示的指针事件属性更改为'auto'

  tooltip: {
// pointFormat: '<div>{point.date}<br\>{point.air}<br\>${point.y}</div><button>test</button>',
useHTML: true,
formatter: function() {
return '<div>'+this.point.date+'<br\>'+this.point.air+'<br\><span>$'+this.y+'</span><br\><a href="http://www.w3schools.com">testtesttest</a></div>';
},
style: {
pointerEvents: 'auto'
}
},

现场示例

http://jsfiddle.net/emzmvth4/1/

关于javascript - 工具提示内的(Highcharts)按钮无法触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42222621/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com