Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのHTMLコードを持っています:
<li class="sm2"><a class="scrol" href="#aboutus_marker" ></a></li>
このリンクで javascriptを呼び出してアンカーにリンクしたいと思います。
記録として、javascript でスライダーを停止させたいと思います。
$('#slider').data('nivoslider').start();
どうすればそのようなことができますか?
必要なのはリスナーと呼ばれるものです。
$('.sm2 a').click(function() { // your start slider code here });
href-Tag を変更する必要はありません。
JS 関数を作成し、これを追加します。
$('#linkid').click(function());