ฉันใช้ 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
ควรใช้กับวัตถุ DOM เท่านั้นสำหรับสิ่งที่สามารถตั้งค่าได้โดยใช้แอตทริบิวต์ HTML
หากคุณต้องการพารามิเตอร์แฮชที่มีอยู่ใน URL window.location.href
อาจเป็นตัวเลือกที่ดีกว่า
window.location.pathname
=> /search
window.location.href
=> www.website.com/search#race_type=1
window.location.hash
คุณจะต้องใช้window.location
วัตถุในตัวของ JavaScript
window.location.pathname
ไม่สามารถเรียกคืนสิ่งใดได้หลังจาก?
เพียงแค่เพิ่มฟังก์ชั่นนี้ใน 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
ไงล่ะ
นี่เป็นปัญหาที่ซับซ้อนกว่าที่หลายคนคิด เบราว์เซอร์หลายสนับสนุนพารามิเตอร์ในตัววัตถุที่ตั้งของ JavaScript และที่เกี่ยวข้อง / วิธีการผ่านเข้าถึงหรือ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 ทำให้การเข้ารหัสแบบ front-end ไม่มีความสุข แต่ 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) เซิร์ฟเวอร์ DNS ของบุคคลที่จัดการโดเมนของคุณด้วยที่อยู่ IP เพื่อระบุที่อยู่ ในลำดับชั้นของเซิร์ฟเวอร์ DNS ชื่อรูทของ stackoverlfow.com คือ com
gTLDs - com « stackoverflow (OR) in « co « google
ระบบโลคัลคุณต้องบำรุงรักษาโดเมนที่ไม่ได้เป็นสาธารณะในไฟล์โฮสต์
localhost.yash.com « localhsot - subdomain(
web-server
), yash.com - maindomain(
Proxy-Server
).
myLocalApplication.com 172.89.23.777
หากพารามิเตอร์มียุค ?date=1467708674
แล้วใช้
var epochDate = 1467708674; var date = new Date( epochDate );
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 (-_.!~*')
*/
สิ่งนี้จะได้ผล:
var currentURL = window.location.href;
คุณสามารถบันทึก window.location และดูตัวเลือกทั้งหมดเพียงใช้ URL:
window.location.origin
สำหรับการใช้เส้นทางทั้งหมด:
window.location.href
นอกจากนี้ยังมีที่ตั้ง _ _
.host
.hostname
.protocol
.pathname
นี้จะกลับแน่นอนURLของหน้าปัจจุบันใช้ JavaScript / jQuery
document.URL
$("*").context.baseURI
location.href
ฉันมีสิ่งนี้เพื่อตัดตัวแปร GET
var loc = window.location;
var currentURL = loc.protocol + '//' + loc.host + loc.pathname;
คุณสามารถหาพา ธ ของคุณโดยใช้ js เองwindow.location
หรือlocation
จะให้เป้าหมายของ URL ปัจจุบันแก่คุณ
console.log("Origin - ",location.origin);
console.log("Entire URL - ",location.href);
console.log("Path Beyond URL - ",location.pathname);
var currenturl = jQuery(location).attr('href');
ในการรับ URL ของหน้าต่างพาเรนต์จากภายใน iframe:
$(window.parent.location).attr('href');
NB: ใช้งานได้ในโดเมนเดียวกันเท่านั้น
นี่คือตัวอย่างเพื่อรับ URL ปัจจุบันโดยใช้ jQuery และ JavaScript:
$(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:
ดู8 ตัวอย่าง jQuery เป็นประโยชน์สำหรับ URL ของ & Querystrings
window.locationจะให้ URLปัจจุบันแก่คุณและคุณสามารถแยกสิ่งที่คุณต้องการได้ ...
หากคุณต้องการเส้นทางของเว็บไซต์รูทให้ใช้สิ่งนี้:
$(location).attr('href').replace($(location).attr('pathname'),'');
.replace('#.*', '')
หรือ ลบไม่เพียง แต่เครื่องหมายแฮช แต่ทุกอย่างหลังจากนั้นเช่นกัน
ใช้บ่อยมาก 3 อันดับแรกคือ
1. window.location.hostname
2. window.location.href
3. window.location.pathname
var path = location.pathname
ส่งคืนพา ธ ของ URL ปัจจุบัน (ไม่ต้องการ jQuery) การใช้window.location
เป็นตัวเลือก
เบราว์เซอร์ทั้งหมดรองรับวัตถุหน้าต่าง Javascript มันกำหนดหน้าต่างของเบราว์เซอร์
วัตถุและฟังก์ชั่นระดับโลกกลายเป็นส่วนหนึ่งของวัตถุหน้าต่างโดยอัตโนมัติ
ตัวแปรโกลบอลทั้งหมดคือคุณสมบัติวัตถุหน้าต่างและฟังก์ชันโกลบอลทั้งหมดเป็นเมธอด
เอกสาร 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
- คำตอบนี้จำเป็นต้องได้รับการปรับปรุงหรือไม่?
var newURL = window.location.protocol + "//" + window.location.host + "/" + window.location.pathname;
// get current URL
$(location).attr('href');
var pathname = window.location.pathname;
alert(window.location);
ใน jstl เราสามารถเข้าถึงเส้นทาง url ปัจจุบันโดยใช้pageContext.request.contextPath
, ถ้าคุณต้องการโทร ajax,
url = "${pageContext.request.contextPath}" + "/controller/path"
เช่นในหน้าhttp://stackoverflow.com/questions/406192
นี้จะให้http://stackoverflow.com/controller/path