且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

highcharts点击标签如何转到锚点

更新时间:2022-10-15 09:06:26

An alternative solution (not the most cross-browser solution because of its dependency on <text> but you can get it working with the incompatible IE versions)

$(".highcharts-data-labels").on("click", "text", function() {
    window.location.hash = "anchor";
});

Why jQuery.on()?

jsFiddle Demo

相关阅读

技术问答最新文章