This article mainly introduces jQuery's implementation of the scoll effect of the anchor. The example analyzes the implementation skills of the scoll effect of the anchor and has some reference value, if you need it, refer to the examples in this article to illustrate how jQuery achieves the scoll effect of the anchor. Share it with you for your reference. The specific implementation method is as follows:
The code is as follows:
$ ('A [href * = #] '). click (function (){
If (location. pathname. replace (/^ \/, '') = this. pathname. replace (/^ \//,'')
& Amp; location. hostname = this. hostname ){
Var $ target = $ (this. hash );
$ Target = $ target. length & $ target
| $ ('[Name =' + this. hash. slice (1) + ']');
If ($ target. length ){
Var targetOffset = $ target. offset (). top;
Var obj = document.doc umentElement;
If (jQuery. browser. safari)
Obj = document. body
If (jQuery. browser. msie)
Obj = 'HTML ';
$ (Obj). animate ({scrollTop: targetOffset}, 1000 );
Return false;
}
}
});
I hope this article will help you with jQuery programming.