我正在尝试打开一个名为 hemsida 的 div 中的链接。
$('#hemsida').unbind('click');
$('#hemsida').bind('click', function(){
console.log('text: '+$(this).html());
window.open($(this).html());
});
但是新窗口打开了错误的链接。例如,如果 div hemsida 中的文本是 hotmail.com,那么新打开窗口的链接是http://localhost.com/hotmail.com。console.log 给出了正确的字符串。知道为什么吗?我是否必须将我的 div hemsida 更改为 href 才能使其工作,或者我可以通过从中获取文本来打开链接?提前致谢。