我试图让这两段代码表现相同,但它们不会: 这个按钮被点击时可以使用:
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];
});