Html元素目标_blank不起作用

时间:2017-10-05 12:08:57

标签: javascript html

我有以下javascript常量:

const url = 'www.google.com';

每当有人选择以下链接时,我都会尝试在新窗口中打开它:

<a href={url} target="_blank">Google</a>

但我得到了:

localhost:8080/firstApp/index.html#https://www.google.com

2 个答案:

答案 0 :(得分:2)

尝试添加&#34; //&#34;你的网址是这样的:

const url = "//www.google.com";

答案 1 :(得分:1)

您的网址应以httphttps

开头