“jQuery получить URL” Ответ

jQuery получить текущий URL

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

jQuery получить 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 получите 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

Ответы похожие на “jQuery получить URL”

Вопросы похожие на “jQuery получить URL”

Больше похожих ответов на “jQuery получить URL” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования