捕获 Javascript 中的最后一个值

发布于 2024-11-02 13:11:39 字数 347 浏览 1 评论 0原文

对于这个线程毫无意义的标题,我感到非常抱歉。

我有一个问题(所以我发布这个的原因:))

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人九事 2024-11-09 13:11:39
xaxis: {
         noTicks: 8, 
         tickFormatter: function(n){
           if (n === 8) {alert(n);}
         }
       }

现在 xasis.tickFormatter(xasis.noTicks) 应该可以做到。

xaxis: {
         noTicks: 8, 
         tickFormatter: function(n){
           if (n === 8) {alert(n);}
         }
       }

Now xasis.tickFormatter(xasis.noTicks) should do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文