vue跳转外部链接
前言:vue内部跳转是可以通过,router的方法,this.$router.push()和 rout-link 来跳转,这里说下她跳转外部地址的方法:1、window.location.href = url2、window.open('http://www.baidu.com',"_blank"); //打开一个新页面3、手动创建a标签,然后默认点击var a = document.create
·
前言:
vue内部跳转是可以通过,router的方法,this.$router.push()和 rout-link 来跳转,这里说下她跳转外部地址的方法:
1、window.location.href = url
2、window.open('http://www.baidu.com',"_blank"); //打开一个新页面
3、手动创建a标签,然后默认点击
var a = document.createElement("a");
a.setAttribute("href", "www.baidu.com");
a.setAttribute("target", "_blank");
a.click();
更多推荐
已为社区贡献20条内容
所有评论(0)