Let javascript realize the browser back and forward functions

Forward syntax:

window.location.href="javascript:history.go(1)";

or

history.back();

Return syntax:

window.location.href="javascript:history.go(-1);";

or

history.forward();
Published 108 original articles · won praise 46 · views 30000 +

Guess you like

Origin blog.csdn.net/qq_44739706/article/details/104454800