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());