function login(str){ if(str != undefined){ socket.emit("user name",str); // window.location.href = 'index.html’; } } 登录函数一旦运行,就向服务端发送登录名,这个时候页面要跳转到登录页面同级目录下的index.html 请问应该怎么做?
作者
作者其它话题
function login(str){ if(str != undefined){ socket.emit("user name",str); // window.location.href = 'index.html’; } } 登录函数一旦运行,就向服务端发送登录名,这个时候页面要跳转到登录页面同级目录下的index.html 请问应该怎么做?