为什么我的网址修饰符不起作用?

时间:2017-03-17 06:58:35

标签: javascript jquery url meteor

当我点击按钮删除www.something / thispart 时,我想修改网址,所以我创建了这段代码:

//JS from alerte.html
import { Template } from 'meteor/templating';
import { Session } from 'meteor/session';

import './404.html';



Template.error.onRendered(function alerteOnCreated() {
});

Template.error.events({
  'click #goHome404': function(){
    var url = window.location.href.split("/")[2]
    window.location.href = url ;
    document.location.href= url;
    window.location.replace(url);
  }
});


Template.error.helpers({
});

尽管在终端控制台中点击goHome404时出现了正确的事情,但没有任何结果:

2 个答案:

答案 0 :(得分:0)

使用它 window.location.pathname 返回到u只请求路径名

答案 1 :(得分:0)

最后,我使用Router.go("/")

使其有效

感谢您的帮助