こんにちは、URLからパラメーターを取得する必要があるURLがあります
var URL="http://localhost:17775/Students/199/Kishore"
//here from the url i need to get the value 199
これは私が試していたものですが、値はここではnullです
function getURLParameter(name) {
return parent.decodeURI((parent.RegExp(name + /([^\/]+)(?=\.\w+$)/).exec(parent.location.href) || [, null])[1]);
};
$(document).ready(function() {
getURLParameter("Students");
//i need to get the value 199 from the url
});