我在本地启动了一个简单的node.js服务器。它给出了index.html。我希望index.html上的链接到localhost:4000以在新窗口中打开同一页面。但是只有在我点击刷新时,浏览器才能在新窗口中读取协议。如何与地址“localhost:4000”建立链接?
SERVER:
//make url
socket.emit('url', 'click here');
的index.html:
socket.on('url', function (data) {
$('#conversation').append('<a target="_blank" href="localhost:4000/">'+data +'</a>');
});
答案 0 :(得分:3)
尝试指定协议(http
):
$('#conversation').append('<a target="_blank" href="http://localhost:4000/">'+data +'</a>');
答案 1 :(得分:2)
您是否尝试将其更改为http://localhost:4000/
?这将确保它使用正确的application protocol。