の形式の URL がありますhttp://localhost:8080/testURL/location/#/old/Ds~1016
。
値 1016 は、選択したページに基づいて変更されます.. javascript で、(選択したページに基づいて) URL から番号 1016 の部分を取得することは可能ですか?
機能を試してみました
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regexS = "[\\?&]" + name + "=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.search);
if (results == null)
return "";
else
return decodeURIComponent(results[1].replace(/\+/g, " "));
}