Сообщение от Diiim
|
test.ru/index.html?ParametrOne=one&ParametrTwo=two&Paramet rThree=three
|
Для "затравки"...
var url='test.ru/index.html?ParametrOne=one&ParametrTwo=two&Paramet rThree=three';
if (/(\?|&)ParametrTwo=/.test(url)) {
var val=url.match(/(\?|&)ParametrTwo=([^&$]+)/);
alert(val[2]);
};