我正在尝试使用jqplot实现水平条形图。我想为y轴标签启用click事件。
但是我用jquery使用类名来尝试访问“y轴刻度”。
$('.jqplot-yaxis-tick').click(function ()
{
alert("you have clicked the label");
});
是否有任何事件可以像jqplot中的“jqplotDataClick”事件那样做?
答案 0 :(得分:0)
此问题已解决 From Here
只需更新.jqplot-yaxis-tick的z-index,这样它就是第一个被点击并添加的div .live(或.on)
$('.jqplot-yaxis-tick').css({
cursor: "pointer",
zIndex: "200"
}).live('click', function (e) {
alert("you have clicked the label");
});