为什么href链接与target =“tabname”不起作用

时间:2017-04-10 20:43:31

标签: html

这是我第一次尝试时工作,如果它存在则会重复使用与目标相同的选项卡,如果不存在则会创建

<a href="www.example.com/help/section3" target="helpTab" class="helpButton">Help</a> 

稍后当我尝试链接时,我注意到如果我多次点击它而不是重复使用它已经制作的那个标签,它会反复创建新的标签。

所以我尝试使用java window.open:

<a onclick="window.open('http://example.com/help/#section1', 'helpTab'); return false" class="helpButton">Help</a>

并且它仍然一遍又一遍地在新标签中打开。

什么会导致它停止工作或我做错了什么?

0 个答案:

没有答案