使用 jquery 向服务器发送连续的 Ajax .post var
我想使用 jquery 不断向服务器发送更新。间隔几乎为零。 做到这一点的最佳方法是什么?这是为了更新其他人屏幕上曾经的人的光标位置。实际实现将在 HTML5 白板原型中进行。
- 有哪些可用选项。
哪个是最好的方法以及什么是 影响。
函数发送位置(){
//要发布的代码
}
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.
- What are the options available.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
按照 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/
您可以使用 jQuery/xmlhttprequest 来实现:
windows.setTimeout
和
$.post()
You can use jQuery/xmlhttprequest for that:
windows.setTimeout
and
$.post()