How to get previous page url using jquery

前端 未结 9 1279
独厮守ぢ
独厮守ぢ 2020-12-02 18:40

How to get the previous page url using jquery?

I am using the following code to get the current page location

$(document).ready(function() {
var path         


        
9条回答
  •  不思量自难忘°
    2020-12-02 18:55

    Use can use one of below this

    history.back();     // equivalent to clicking back button
    history.go(-1);     // equivalent to history.back();
    

    I am using as below for back button

    Back
    

提交回复
热议问题