使用 jquery 向服务器发送连续的 Ajax .post var

发布于 2024-11-25 00:06:20 字数 270 浏览 2 评论 0原文

我想使用 jquery 不断向服务器发送更新。间隔几乎为零。 做到这一点的最佳方法是什么?这是为了更新其他人屏幕上曾经的人的光标位置。实际实现将在 HTML5 白板原型中进行。

  1. 有哪些可用选项。
  2. 哪个是最好的方法以及什么是 影响。

    函数发送位置(){

    //要发布的代码

    }

    setInterval( "send_position()", 10 );

这个方法可以吗?

I want to continuously keep sending update to server using jquery. The interval will be almost nil.
What are the best way to do this? This is for updating the cursor position of once person on others screen. Practical implementation will be in a prototype of HTML5 whiteboard.

  1. What are the options available.
  2. Which is the best way and what are
    the implications.

    function send_position(){

    //code to post

    }

    setInterval( "send_position()", 10 );

Will this method be ok?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

︶葆Ⅱㄣ 2024-12-02 00:06:20

按照 Robert 的描述使用 window.setTimeout() ,或者如果您已经使用 HTML5,则可以使用 websockets: http://code.google.com/p/jquery-websocket/

Either by using window.setTimeout() as described by Robert or, if you already use HTML5, you could use websockets: http://code.google.com/p/jquery-websocket/

本宫微胖 2024-12-02 00:06:20

您可以使用 jQuery/xmlhttprequest 来实现:

windows.setTimeout

$.post()

You can use jQuery/xmlhttprequest for that:

windows.setTimeout
and
$.post()

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