コード:
window.location.href = "Posts?Category=" + sel;
カテゴリページで値を取得するには?
コード:
window.location.href = "Posts?Category=" + sel;
カテゴリページで値を取得するには?
これを試して:
function getURLParameter(name, urlsearch) {
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(urlsearch || location.search) || [ , "" ])[1].replace(
/\+/g, '%20'))
|| null;
}
var url = "Posts?Category=1134324";
alert(getURLParameter('Category', url));