Javascript目标ahref和类

时间:2013-07-12 16:55:29

标签: javascript jquery

我试图让这个HMTL成为目标。我试图在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;
});

3 个答案:

答案 0 :(得分:3)

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

你的订单有点混乱

答案 1 :(得分:2)

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

你想要的是我想的。

答案 2 :(得分:0)

try $("a.tablet[href='#contentm']")