21

したがって、特定のdivにスクロールすると思われるJQueryに問題があります。

HTML

<div id="searchbycharacter">
    <a class="searchbychar" href="#" id="#0-9" onclick="return false">0-9 |</a> 
    <a class="searchbychar" href="#" id="#A" onclick="return false"> A |</a> 
    <a class="searchbychar" href="#" id="#B" onclick="return false"> B |</a> 
    <a class="searchbychar" href="#" id="#C" onclick="return false"> C |</a> 
    ... Untill Z
</div>

<div id="0-9">
    <p>some content</p>
</div>

<div id="A">
    <p>some content</p>
</div>

<div id="B">
    <p>some content</p>
</div>

<div id="C">
    <p>some content</p>
</div>

... Untill Z

JQuery

コードで実行したいことは次のとおりです。

$( '.searchbychar' ).click(function() {

    $('html, body').animate({
        scrollTop: $('.searchbychar').attr('id').offset().top
    }, 2000);

});
4

3 に答える 3

77

ID は一意であることを意図しており、数字で始まる ID は使用しないでください。代わりにデータ属性を使用して、次のようにターゲットを設定します。

<div id="searchbycharacter">
    <a class="searchbychar" href="#" data-target="numeric">0-9 |</a> 
    <a class="searchbychar" href="#" data-target="A"> A |</a> 
    <a class="searchbychar" href="#" data-target="B"> B |</a> 
    <a class="searchbychar" href="#" data-target="C"> C |</a> 
    ... Untill Z
</div>

jquery に関しては:

$(document).on('click','.searchbychar', function(event) {
    event.preventDefault();
    var target = "#" + this.getAttribute('data-target');
    $('html, body').animate({
        scrollTop: $(target).offset().top
    }, 2000);
});
于 2013-09-16T15:41:00.880 に答える
5

あなたはこれを行うことができます:

$('.searchbychar').click(function () {
    var divID = '#' + this.id;
    $('html, body').animate({
        scrollTop: $(divID).offset().top
    }, 2000);
});

ご参考までに

  • コードの最初の行のように、クラス名の前に.(ドット)を付ける必要があります。
  • $( 'searchbychar' ).click(function() {
  • また、コード$('.searchbychar').attr('id')は jQuery オブジェクトではなく文字列 ID を返します。したがって、メソッドを適用することはできません.offset()
于 2013-09-16T15:40:09.370 に答える
3

これが私の解決策です:

<!-- jquery smooth scroll to id's -->   
<script>
$(function() {
  $('a[href*=\\#]:not([href=\\#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        $('html,body').animate({
          scrollTop: target.offset().top
        }, 500);
        return false;
      }
    }
  });
});
</script>

このスニペットだけで、それぞれに対して新しいスクリプトを実行することなく、無制限の数のハッシュ リンクと対応する ID を使用できます。

https://stackoverflow.com/a/28631803/4566435 (または、ここに私のブログ投稿への直接リンクがあります)

明確にするために、私に知らせてください。それが役に立てば幸い!

于 2015-02-20T14:56:24.893 に答える