Home  >  Article  >  Web Front-end  >  Let the web page jump to the jquery code non-bookmark at the specified location_jquery

Let the web page jump to the jquery code non-bookmark at the specified location_jquery

WBOY
WBOYOriginal
2016-05-16 17:23:211122browse

Call:

Copy code The code is as follows:

var offset = 10;
var hash = globalHash;
if (hash) {
scrollBodyTopTo($("div#c_" hash).offset().top-offset);
}

Method:
Copy code The code is as follows:

function scrollBodyTopTo(pos) {
$(" html,body").animate({scrollTop:pos});
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn