我正在尝试使用 jqplot 实现水平条形图。我想为 y 轴标签启用点击事件。
但我尝试使用 jquery 使用类名来访问“y 轴刻度”。
$('.jqplot-yaxis-tick').click(function ()
{
alert("you have clicked the label");
});
有没有像 jqplot 中的“jqplotDataClick”事件这样的事件?
我正在尝试使用 jqplot 实现水平条形图。我想为 y 轴标签启用点击事件。
但我尝试使用 jquery 使用类名来访问“y 轴刻度”。
$('.jqplot-yaxis-tick').click(function ()
{
alert("you have clicked the label");
});
有没有像 jqplot 中的“jqplotDataClick”事件这样的事件?
这个问题 从这里解决了
只需更新 .jqplot-yaxis-tick 的 z-index,使其成为第一个被单击并添加 .live (或 .on)的 div
$('.jqplot-yaxis-tick').css({
cursor: "pointer",
zIndex: "200"
}).live('click', function (e) {
alert("you have clicked the label");
});