我如何得到"卸载"在功能内执行任务?

时间:2016-04-06 17:03:20

标签: javascript

我试图让这两段代码表现相同,但它们不会: 这个按钮被点击时可以使用:

False

这个没有...它确实执行警报,但没有别的

//点击时打开详细信息页面

 // close button needs to push the locations index to the history
    $('span.close-canvas').on('click', function () {
        history.pushState({}, '', '/locations');
        $('html').removeClass('scrollable-no');
        $('html').removeClass('flyup-visible');
        var titleParts = document.title.split("|");
        document.title = "Locations | " + titleParts[1];
    });

0 个答案:

没有答案