“javascript obtient une URL” Réponses codées

jQuery obtenir l'URL actuelle

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

javascript obtient une URL

var currentUrl = window.location.href;
Grepper

Obtenez l'URL actuelle JavaScript

window.location.pathname; // Returns path only (/path/example.html)
window.location.href;     // Returns full URL (https://example.com/path/example.html)
window.location.origin;   // Returns base URL (https://example.com)
Spyder

javascript obtient une URL de base

console.log(window.location.origin);
Carnivorous Flamingo

JavaScript Get Domain

window.location.hostname
Friendly Hawk

Obtenir une URL réelle en variable

var currentLocation = window.location;
Prickly Pheasant

Réponses similaires à “javascript obtient une URL”

Questions similaires à “javascript obtient une URL”

Plus de réponses similaires à “javascript obtient une URL” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code