var domainlocation = window.location.href;
var regular_exp = /.ua\/\w+/g;
var result_domainlocation = domainlocation.match(regular_exp);
if ( result_domainlocation == '.ua/Vinogradiv' ) {
alert('Vinogradiv');
}
if ( result_domainlocation == '.ua/Beregove' ) {
alert('Beregove');
}
switch (result_domainlocation) {
case ".ua/Vinogradiv" : alert("Vinogradiv"); break;
case ".ua/Beregove" : alert('Beregove');
}
Добрый день.
Такая банальная проблема
инструкция IF - все работает,
SWITCH - НЕТ.
подскажите в чем проблема(регулярка работает.)