捕获 Javascript 中的最后一个值
对于这个线程毫无意义的标题,我感到非常抱歉。
我有一个问题(所以我发布这个的原因:))
xaxis: {noTicks: 8, tickFormatter: function(n)
{
alert(n);
}
嗨,上面的函数来自图表 API (Flotr API) 根据上面的代码,警报显示 8 次(因为 noofticks/labels 为 8)
是否可以捕获最后一个警报(即当 n 为 8 时),其中 8 是 noofTicks Value 。
我所需要的基本上就是使数组的最后一个值显示在 X 轴上。
请指教。
I am extremely sorry for the meaningless header for this Thread .
I have a question (So the reason i posted this :) )
xaxis: {noTicks: 8, tickFormatter: function(n)
{
alert(n);
}
Hi , the above function is from the charting API (Flotr API)
As per the above code , the alert gets displayed 8 times (Because noofticks/labels is 8)
Is it possible to capture the last alert (That is when n is 8 ) where 8 is the noofTicks Value .
All this i need is basically to make the last value of an array to show on X axis .
Please advice .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在 xasis.tickFormatter(xasis.noTicks) 应该可以做到。
Now
xasis.tickFormatter(xasis.noTicks)
should do it.