我正在尝试在脚本中使用scrollTo(),但无法在Firefox中正常运行,而在chrome中却可以正常工作
<script type="text/javascript">
$(document).ready(function(){
$('.scroll').click( function(){
var location = "." + $(this).attr("id");
$("body,html").scrollTo(location,100);
});
});
</script>