jQuery를 사용하고 있습니다. 현재 URL의 경로를 가져 와서 변수에 할당하려면 어떻게합니까?
URL 예 :
http://localhost/menuname.de?foo=bar&number=0
jQuery를 사용하고 있습니다. 현재 URL의 경로를 가져 와서 변수에 할당하려면 어떻게합니까?
URL 예 :
http://localhost/menuname.de?foo=bar&number=0
답변:
경로를 얻으려면 다음을 사용할 수 있습니다.
var pathname = window.location.pathname; // Returns path only (/path/example.html)
var url = window.location.href; // Returns full URL (https://example.com/path/example.html)
var origin = window.location.origin; // Returns base URL (https://example.com)
순수한 jQuery 스타일에서 :
$(location).attr('href');
위치 객체에는 호스트, 해시, 프로토콜 및 경로 이름과 같은 다른 속성도 있습니다.
.attr()
위치에서 할 수 없어야합니다 . (1) 요소가 아니므 $(location)
로 최대한 그늘이 있으며 (2) 작동하더라도 .prop()
속성을 얻는 데 사용해야합니다 . .attr()
HTML 속성입니다.
http://www.refulz.com:8082/index.php#tab2?foo=789
Property Result
------------------------------------------
host www.refulz.com:8082
hostname www.refulz.com
port 8082
protocol http:
pathname index.php
href http://www.refulz.com:8082/index.php#tab2
hash #tab2
search ?foo=789
var x = $(location).attr('<property>');
이것은 jQuery가있는 경우에만 작동합니다. 예를 들면 다음과 같습니다.
<html>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script>
$(location).attr('href'); // http://www.refulz.com:8082/index.php#tab2
$(location).attr('pathname'); // index.php
</script>
</html>
/index.php
대신 사용해야합니다 index.php
.
attr
HTML 속성을 사용하여 설정할 수있는 DOM 객체에서만 사용해야합니다.
URL에 해시 매개 변수가 필요한 경우 window.location.href
더 나은 선택 일 수 있습니다.
window.location.pathname
=> /search
window.location.href
=> www.website.com/search#race_type=1
window.location.hash
이 함수를 JavaScript로 추가하면 현재 경로의 절대 경로가 반환됩니다.
function getAbsolutePath() {
var loc = window.location;
var pathName = loc.pathname.substring(0, loc.pathname.lastIndexOf('/') + 1);
return loc.href.substring(0, loc.href.length - ((loc.pathname + loc.search + loc.hash).length - pathName.length));
}
나는 그것이 당신을 위해 작동하기를 바랍니다.
var pathName = loc.pathname.substring(0, loc.pathname.lastIndexOf('/'));
window.location은 자바 스크립트의 개체입니다. 다음 데이터를 반환합니다
window.location.host #returns host
window.location.hostname #returns hostname
window.location.path #return path
window.location.href #returns full current url
window.location.port #returns the port
window.location.protocol #returns the protocol
jquery에서 사용할 수 있습니다
$(location).attr('host'); #returns host
$(location).attr('hostname'); #returns hostname
$(location).attr('path'); #returns path
$(location).attr('href'); #returns href
$(location).attr('port'); #returns port
$(location).attr('protocol'); #returns protocol
windo.location.origin
?
이것은 많은 사람들이 생각하는 것보다 더 복잡한 문제입니다. 여러 브라우저는 자바 스크립트 위치 객체 내장 및 매개 변수 / 방법 접근을 통해 관련 지원 window.location
또는 document.location
. 그러나 Internet Explorer (6,7)의 다른 버전은 이러한 방법을 동일한 방식으로 지원하지 않으므로 ( window.location.href
? window.location.replace()
지원되지 않음) Internet Explorer를 손에 쥐기 위해 항상 조건부 코드를 작성하여 다르게 액세스해야합니다.
따라서 jQuery를 사용할 수 있고로드 한 경우 이러한 문제를 해결하기 때문에 다른 언급 한 것처럼 jQuery (위치)를 사용할 수도 있습니다. 그러나 JavaScript를 통해 (즉, Google Maps API 및 위치 객체 메소드를 사용하여) 일부 클라이언트 측 지리적 위치 재 지정을 수행하려는 경우 전체 jQuery 라이브러리를로드하고 다음과 같은 조건부 코드를 작성하지 않을 수 있습니다. Internet Explorer / Firefox 등의 모든 버전을 확인합니다.
Internet Explorer는 프론트 엔드 코딩 고양이를 불행하게 만들지 만 jQuery는 우유 한 접시입니다.
호스트 이름의 경우에만 다음을 사용하십시오.
window.location.hostname
java-script는 브라우저의 주소 표시 줄에 표시되는 현재 URL을 검색하는 많은 방법을 제공합니다.
테스트 URL :
http://
stackoverflow.com/questions/5515310/get-current-url-with-jquery/32942762
?
rq=1&page=2&tab=active&answertab=votes
#
32942762
resourceAddress.hash();
console.log('URL Object ', webAddress);
console.log('Parameters ', param_values);
함수:
var webAddress = {};
var param_values = {};
var protocol = '';
var resourceAddress = {
fullAddress : function () {
var addressBar = window.location.href;
if ( addressBar != '' && addressBar != 'undefined') {
webAddress[ 'href' ] = addressBar;
}
},
protocol_identifier : function () { resourceAddress.fullAddress();
protocol = window.location.protocol.replace(':', '');
if ( protocol != '' && protocol != 'undefined') {
webAddress[ 'protocol' ] = protocol;
}
},
domain : function () { resourceAddress.protocol_identifier();
var domain = window.location.hostname;
if ( domain != '' && domain != 'undefined' && typeOfVar(domain) === 'string') {
webAddress[ 'domain' ] = domain;
var port = window.location.port;
if ( (port == '' || port == 'undefined') && typeOfVar(port) === 'string') {
if(protocol == 'http') port = '80';
if(protocol == 'https') port = '443';
}
webAddress[ 'port' ] = port;
}
},
pathname : function () { resourceAddress.domain();
var resourcePath = window.location.pathname;
if ( resourcePath != '' && resourcePath != 'undefined') {
webAddress[ 'resourcePath' ] = resourcePath;
}
},
params : function () { resourceAddress.pathname();
var v_args = location.search.substring(1).split("&");
if ( v_args != '' && v_args != 'undefined')
for (var i = 0; i < v_args.length; i++) {
var pair = v_args[i].split("=");
if ( typeOfVar( pair ) === 'array' ) {
param_values[ decodeURIComponent( pair[0] ) ] = decodeURIComponent( pair[1] );
}
}
webAddress[ 'params' ] = param_values;
},
hash : function () { resourceAddress.params();
var fragment = window.location.hash.substring(1);
if ( fragment != '' && fragment != 'undefined')
webAddress[ 'hash' ] = fragment;
}
};
function typeOfVar (obj) {
return {}.toString.call(obj).split(' ')[1].slice(0, -1).toLowerCase();
}
EX : 기본 포트 번호
<protocol>//<hostname>:<port>/<pathname><search><hash>
https://en.wikipedia.org:443/wiki/Pretty_Good_Privacy
http://stackoverflow.com:80/
도메인 이름은 DNS (Domain Name System) 트리의 규칙과 절차에 따라 등록합니다. 주소 지정을 위해 IP 주소로 도메인을 관리하는 사람의 DNS 서버. DNS 서버 계층에서 stackoverlfow.com의 루트 이름은 com입니다.
gTLDs - com « stackoverflow (OR) in « co « google
로컬 시스템 호스트 파일에서 PUBLIC이 아닌 도메인을 유지해야합니다.
localhost.yash.com « localhsot - subdomain(
web-server
), yash.com - maindomain(
Proxy-Server
).
myLocalApplication.com 172.89.23.777
매개 변수에 Epoch 가 있으면 ?date=1467708674
사용하십시오.
var epochDate = 1467708674; var date = new Date( epochDate );
usernaem / password에
다음과 같은 @ 기호가 포함 된 경우 username : password를 사용하는 인증 URL
:
Username = `my_email@gmail`
Password = `Yash@777`
다음 당신은 URL이 인코딩 필요 @
로 %40
. 보내다...
http://my_email%40gmail.com:Yash%40777@www.my_site.com
encodeURI()
(vs) encodeURIComponent()
예
var testURL = "http:my_email@gmail:Yash777@//stackoverflow.com?tab=active&page=1#32942762";
var Uri = "/:@?&=,#", UriComponent = "$;+", Unescaped = "(-_.!~*')"; // Fixed
var encodeURI_Str = encodeURI(Uri) +' '+ encodeURI( UriComponent ) +' '+ encodeURI(Unescaped);
var encodeURIComponent_Str = encodeURIComponent( Uri ) +' '+ encodeURIComponent( UriComponent ) +' '+ encodeURIComponent( Unescaped );
console.log(encodeURI_Str, '\n', encodeURIComponent_Str);
/*
/:@?&=,# +$; (-_.!~*')
%2F%3A%40%3F%26%3D%2C%23 %2B%24%3B (-_.!~*')
*/
URL 사용을 위해 window.location을 기록하고 모든 옵션을 볼 수 있습니다.
window.location.origin
전체 경로 사용을 위해 :
window.location.href
위치도 있습니다. _ _
.host
.hostname
.protocol
.pathname
js 자체를 사용하여 경로를 얻 window.location
거나 location
현재 URL의 객체를 제공 할 수 있습니다
console.log("Origin - ",location.origin);
console.log("Entire URL - ",location.href);
console.log("Path Beyond URL - ",location.pathname);
다음은 jQuery와 JavaScript를 사용하여 현재 URL을 가져 오는 예입니다.
$(document).ready(function() {
//jQuery
$(location).attr('href');
//Pure JavaScript
var pathname = window.location.pathname;
// To show it in an alert window
alert(window.location);
});
$.getJSON("idcheck.php?callback=?", { url:$(location).attr('href')}, function(json){
//alert(json.message);
});
다음은 사용할 수있는 유용한 코드 스 니펫의 예입니다. 일부 예는 표준 JavaScript 함수를 사용하며 jQuery에만 국한되지 않습니다.
window.location.href를 사용하십시오 . 이것은 당신에게 완전한 URL을 줄 것이다 .
루트 사이트의 경로를 얻으려면 다음을 사용하십시오.
$(location).attr('href').replace($(location).attr('pathname'),'');
.replace('#.*', '')
않습니까? 해시 마크뿐만 아니라 그 이후의 모든 것을 제거합니까?
매우 일반적으로 사용되는 상위 3 가지
1. window.location.hostname
2. window.location.href
3. window.location.pathname
모든 브라우저는 자바 스크립트 창 객체를 지원합니다. 브라우저의 창을 정의합니다.
전역 객체와 함수는 자동으로 윈도우 객체의 일부가됩니다.
모든 전역 변수는 창 개체 속성이고 모든 전역 함수는 그 방법입니다.
HTML 문서 전체도 창 속성입니다.
따라서 window.location 객체를 사용하여 모든 URL 관련 속성을 가져올 수 있습니다.
자바 스크립트
console.log(window.location.host); //returns host
console.log(window.location.hostname); //returns hostname
console.log(window.location.pathname); //return path
console.log(window.location.href); //returns full current url
console.log(window.location.port); //returns the port
console.log(window.location.protocol) //returns the protocol
JQuery
console.log("host = "+$(location).attr('host'));
console.log("hostname = "+$(location).attr('hostname'));
console.log("pathname = "+$(location).attr('pathname'));
console.log("href = "+$(location).attr('href'));
console.log("port = "+$(location).attr('port'));
console.log("protocol = "+$(location).attr('protocol'));
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
location.pathname
사용중인 곳을 보고 있습니다 . location.path
이 답변을 업데이트해야합니까?