如何用mootools控制后退按钮?

时间:2015-06-29 12:52:04

标签: events controls mootools back

这是它寻找jQuery的方式。 我如何用Mootools实现同样的目标?

.nav-tabs > li.rounded > a:active,
.nav-tabs > li.rounded > a:hover,
.nav-tabs > li.rounded > a:focus  {
    background-color:green;
    font-weight:bolder;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
}

1 个答案:

答案 0 :(得分:1)

在jQuery中,这是onhashchangepopstate的包装,它甚至不是标准的jQuery,而是jQuery mobile等。

在mootools-core中没有开箱即用的包装,但你可以制作一个。

例如,Cpojer写了history.js - http://mootools.net/forge/p/history - 还有很多其他的。

如果你想要当地人,你可以。

window.addEvent('hashchange', function(e){
  console.log(e);
  alert('hi');
});

等等。