如何将此功能复制到另一个 div?
function goto(id, t){
//animate to the div id.
$(".headbox-wrapper").animate({"left": -($(id).position().left)}, 600);
// remove "active" class from all links inside #nav
$('#nav a').removeClass('active');
// add active class to the current link
$(t).addClass('active');
}
使用新名称和新 div,例如 function2。
它与这个在同一页面上,当我复制并打印新脚本时,它们都不起作用,这很明显。