0

我试图制作一个针对这个 HMTL 的 JS 片段。我试图在 javascript 中输入课程,但认为这可能是错误的做法。

HTML

<li><a href="#contentm" class="tablet">Projects.t</a></li>

JS

$("a[href='#contentm .tablet']").click(function () {
    $("html, body").animate({
        scrollTop: $("body").scrollTop() == 0 ? 500 : 0
    }, "slow");
    return false;
});
4

3 回答 3

3
$("a.tablet[href='#contentm']").click(function () {
$("html, body").animate({
    scrollTop: $("body").scrollTop() == 0 ? 500 : 0
}, "slow");
return false;
});

你的订单有点乱

于 2013-07-12T16:57:44.327 回答
2
$("a[href='#contentm'].tablet").click(function () {
    $("html, body").animate({
        scrollTop: $("body").scrollTop() == 0 ? 500 : 0
    }, "slow");
    return false;
});

是你想要的我想。

于 2013-07-12T16:58:07.477 回答
0
try $("a.tablet[href='#contentm']")
于 2013-07-12T16:59:06.153 回答