简体   繁体   中英

how to get the returned URL from ajax request

i'm trying to get only the returned URL from ajax request

like this

 $.ajax({
                    type: "GET",
                    dataType : "jsonp",
                    async: false,
                    url: $('#FaceBookProfileLink').attr('href'),

                    success: function(response) {
                        console.log(response);
                    },
                    error: function (jqXHR, textStatus, errorThrown) {
                        console.log(jqXHR);
                        console.log(textStatus);
                        console.log(errorThrown);
                    }
                });

but i can't.

the returned URL showing in the console as js file but i can't get it

控制台中的URL

please any help and many thanks in advance.

当您使用'GET'方法时,请使用$ _GET []检索它们,即:

echo $_GET['code']

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM