querystring 처리 클래스
12496 단어 String
/*
* querystring( ?userid=222&username=23432sdf)
*/
function
PageQuery(q) {
if
(q.length
>
1
)
this
.q
=
q.substring(
1
, q.length);
else
this
.q
=
null
;
//
this
.keyValuePairs
=
new
Array();
if
(
this
.q) {
var
infos
=
this
.q.split(
"
&
"
);
for
(
var
i
=
0
; i
<
infos.length; i
++
) {
//
this
.keyValuePairs.push(infos[i]);
}
}
this
.getKeyValuePairs
=
function
() {
return
this
.keyValuePairs };
//
this
.getLength
=
function
() {
return
this
.keyValuePairs.length };
//
key, value
this
.getValue
=
function
(s) {
var
length
=
this
.getLength();
for
(
var
i
=
0
; i
<
length; i
++
) {
if
(
this
.keyValuePairs[i].split(
"
=
"
)[
0
]
==
s)
return
this
.keyValuePairs[i].split(
"
=
"
)[
1
];
}
};
//
this
.getParameters
=
function
() {
var
parameters
=
new
Array();
var
length
=
this
.getLength();
for
(
var
i
=
0
; i
<
length; i
++
) {
parameters.push(
this
.keyValuePairs[i].split(
"
=
"
)[
0
]);
}
return
parameters;
}
}
function
analysisUrl() {
//
this.location.search ?
//
alert(this.location.search);
var
page
=
new
PageQuery(
"
?userid=234&username=sdfsd
"
);
//
alert(page.getLength());
alert(page.getValue(
"
username
"
));
var
params
=
page.getParameters();
for
(
var
i
=
0
; i
<
params.length; i
++
) {
alert(params[i]);
}
}
<
/
script>
, 。
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Access Request, Session and Application in Struts2If we want to use request, Session and application in JSP, what should we do? We can obtain Map type objects such as Req...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.