“jQuery Obtenha URL atual” Respostas de código

jQuery Obtenha URL atual

var currentURL = $(location).attr('href'); //jQuery solution
var currentURL = window.location.href; // raw javascript
Grepper

JQuery Get URL

var currentURL = $(location).attr('href'); 
var currentURL = window.location.href;
Sid Potti

jQuery Get Url Slug

var pathname = window.location.pathname;
Carnivorous Flamingo

JQuerry Get URL

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery Get Current Page URL</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $("button").click(function(){
            var currentURL=location.protocol + '//' + location.host + location.pathname;
  			alert(currentURL);
        });
    });
</script>
</head>
<body>
    <button type="button">Get URL</button>
</body>
</html>
Dizzy Donkey

Respostas semelhantes a “jQuery Obtenha URL atual”

Perguntas semelhantes a “jQuery Obtenha URL atual”

Mais respostas relacionadas para “jQuery Obtenha URL atual” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código