我试图让这个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;
});
答案 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']")