전달된 매개변수가 다음과 같은 경우:
url 매개변수를 가져오는 js는 다음과 같습니다.
/**초기 로딩 완료*/
function getUrlVars(){
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') 1).split('&')
for(var i = 0; i < hashes .length; i ) {
hash = hashes[i].split('=');
vars.push(hash[0])
vars[hash[0]] = hash[1 ];
}
return vars;
}
URL에 중국어가 있으면 매개변수를 사용할 때 중국어 문자가 깨집니다. () 메서드를 다음과 같이 디코딩합니다.
//카테고리의 pkId 가져오기
var params = getUrlVars();
//이 카테고리의 ID 가져오기
var parentId = params[params[0]]//Get the 카테고리 이름
var productName = decodeURI(params[params[1]])