首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > Web Sockets jQuery插件。

Web Sockets jQuery插件。

  • 资源大小:1.23 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: javascript jquery html5 json WebSocket

资 源 简 介

This plug-in is used to send and receive the JSON object directly with Web Sockets API. ## Usage ## ### Connection ### var ws = $.websocket("ws://127.0.0.1:8080/"); Sending Message ws.send("hello"); // sending message is "{type:"hello"}".ws.send("say", {name:"foo", text:"baa"}); // sending message is "{type:"say", data:{name:"foo", text:"baa"}}" Event Handling var ws = $.websocket("ws://127.0.0.1:8080/", { open: function() { ... }, close: function() { ... }, events: { say: function(e) { alert(e.data.name); // "foo" alert(e.data.text); // "baa" } }}); Example WebSocket Chat

WebSocket Chat

&l

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.307869s