标签: javascript html
我觉得有点像菜鸟,但是:如何在当前标签中打开链接?我不想使用open(link); 。
open(link);
答案 0 :(得分:3)
您可以使用以下方法在同一标签中打开链接:
window.location = "http://google.com";
答案 1 :(得分:1)
使用html,您可以:
<a href="index.html" target="self">Link</a>