我对jquery并不太了解,但没有滚动,即使我将时间设置为5000或更多,它也不会立即滚动到该页面部分。任何帮助将不胜感激。
$(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
}, 1000);
return false;
}
}
});
});
这是控制台上的错误消息。 demo.js是我的文件,min.js是外部脚本。
jquery.min.js:2 Uncaught Error: Syntax error, unrecognized expression: a[href*=#]:not([href=#])
at Function.fa.error (jquery.min.js:2)
at fa.tokenize (jquery.min.js:2)
at fa.select (jquery.min.js:2)
at Function.fa [as find] (jquery.min.js:2)
at n.fn.init.find (jquery.min.js:2)
at new n.fn.init (jquery.min.js:2)
at n (jquery.min.js:2)
at HTMLDocument.<anonymous> (demo.js:27)
at i (jquery.min.js:2)
at Object.fireWith [as resolveWith] (jquery.min.js:2)