Connecting to TCP Socket from browser using javascript

http://stackoverflow.com/questions/12407778/connecting-to-tcp-socket-from-browser-using-javascript

You can use HTML5 Web Sockets:

点击(此处)折叠或打开

  1. var connection = new WebSocket('ws://IPAddress:Port');
  2. connection.onopen = function () {
  3.   connection.send('Ping'); // Send the message 'Ping' to the server
  4. };
http://www.html5rocks.com/en/tutorials/websockets/basics/

Introducing WebSockets: Bringing Sockets to the Web


++++++++++++++++++++++++++++++++++

See jsocket. Haven't used it myself. Been more than 3 years since last update (as of 26/6/2014).

From the documentation:


点击(此处)折叠或打开

  1. <script type='text/javascript'>
  2.     // Host we are connecting to
  3.     var host = 'localhost';
  4.     // Port we are connecting on
  5.     var port = 3000;

  6.     var socket = new jSocket();

  7.     // When the socket is added the to document
  8.     socket.onReady = function(){
  9.             socket.connect(host, port);
  10.     }

  11.     // Connection attempt finished
  12.     socket.onConnect = function(success, msg){
  13.             if(success){
  14.                     // Send something to the socket
  15.                     socket.write('Hello world');
  16.             }else{
  17.                     alert('Connection to the server could not be estabilished: ' + msg);
  18.             }
  19.     }
  20.     socket.onData = function(data){
  21.             alert('Received from socket: '+data);
  22.     }

  23.     // Setup our socket in the div with the id="socket"
  24.     socket.setup('mySocket');
  25. </script>







<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
阅读(95) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
评论热议
posted @ 2016-02-01 00:00  张同光  阅读(98)  评论(0编辑  收藏  举报