<a>标签中的href中,如果你写一个路径默认是以相对路径打开的,加上"http://" 消息头那就可以打开绝对路径
html:
js:
openUrl: function(url) { if (url.indexOf("http") != 0) { window.open("http://" + url); } else { window.open(url); } }
本文共 331 字,大约阅读时间需要 1 分钟。
<a>标签中的href中,如果你写一个路径默认是以相对路径打开的,加上"http://" 消息头那就可以打开绝对路径
html:
js:
openUrl: function(url) { if (url.indexOf("http") != 0) { window.open("http://" + url); } else { window.open(url); } }
转载于:https://www.cnblogs.com/leechenxiang/p/6674192.html