html加链接的方法还有在html中插入javascript代码调用Window open() 方法。示例如下:
open() 方法用于打开一个新的浏览器窗口或查找一个已命名的窗口。
1、在新浏览器窗口中打开 www.runoob.com :
function open_win() {
window.open("http://www.runoob.com");
}
2、下面的示例在一个新的浏览器打开一个window空白页:
function openWin(){
myWindow=window.open('','','width=200,height=100');
myWindow.document.write("<p>这是'我的窗口'</p>");
myWindow.focus();
}
转载:html里面除了加链接之外,还有什么方式可以加链接?_百度知道
https://zhidao.baidu.com/question/564069662.html