-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (52 loc) · 1.45 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<title>Chat</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.0.js"></script>
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
</head>
<body>
<div id="contenedor">
<div id="mensajes"></div>
<form method="post" action="" onsubmit="return false" />
<input type="text" name="mensaje" id="mensaje" value="" />
<input id="cliente" name="cliente" value="" type="hidden" />
<input type="submit" name="enviar" id="enviar" value="enviar" onclick="enviarmensaje()" />
</form>
</div>
<script>
var socket=io.connect(window.location.hostname, {port:window.location.port});
var nombreusuario;
socket.on('connect',function(cliente) {
nombreusuario = prompt("Ingresa tu usuario: ");
socket.emit("establecerusuario",{nombreusuario:nombreusuario});
// body...
});
socket.on('mensaje',function(mensaje) {
anexar ('<strong>'+ mensaje.usuario+'</strong>'+": "+mensaje.mensaje);
// body...
});
function enviar (mensaje) {
// body...
if(!mensaje){
var msj= $("#mensaje").val();
$("#mensaje").val('');
} else {
var msj=mensaje;
}
console.log(msj);
if(msj.length > 0){
console.log(msj);
if(socket.emit("mensaje",{ mensaje: msj})){
anexar('<strong>'+nombreusuario+'</strong>'+': '+msj);
}
}
}
function aex (mensaje) {
$('div#mensajes').prepend('<div class="msj">'+mensaje+'</div>')
// body...
}
</script>
</body>
</html>