我如何總是讀取第一個單詞,例如使用jquery/javascript的端口號之後的單詞「something」?如何使用jquery讀取url中的單詞?
這裏是URL,我想端口號
http://www.aaa.com:1081/something/arap/con.html
$(document).ready(function() {
var currentUrl= window.location.pathname;
alert (currentUrl);
});
我如何總是讀取第一個單詞,例如使用jquery/javascript的端口號之後的單詞「something」?如何使用jquery讀取url中的單詞?
這裏是URL,我想端口號
http://www.aaa.com:1081/something/arap/con.html
$(document).ready(function() {
var currentUrl= window.location.pathname;
alert (currentUrl);
});
快速和骯髒的:
window.location.pathname.split('/')[1]
但你可能想使用這樣的事情,而不是:https://github.com/allmarkedup/jQuery-URL-Parser
$(document).ready(function() {
var pathArray = window.location.pathname.split('/');
//Then access the different parts by the parts of the array, like
var secondLevelLocation = pathArray[0];
});
嘗試後,要什麼有什麼的第一個字:
$(document).ready(function() {
var currentUrl= window.location.pathname.split('/')[1];
alert (currentUrl);
});
爲什麼downvote? – DarkAjax
鑑於此字符串:'「/something/arap/con.html」'你怎麼會得到'「東西」'? –