You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
d0ublezer0
Такая задача: необходимо подменять action формы в зависимости от выбранных параметров (SELECT) в ней.
function SubmitSearchForm()
{
switch (document.searchform.searchwhere.options[document.searchform.searchwhere.selecte
dIndex].value)
{
case "business":
document.searchform.action ="/index.php?option=com_sobi2&sobi2Task=search";
break;
case "content":
document.searchform.action ="/index.php?option=com_search";
break;
case "ads":
document.searchform.action ="/index.php?option=com_adsmanager";
break;
default:
document.searchform.action ="/index.php?option=com_search";
break;
}
return true;
}
в бизнес-справочнике
в публикациях
в объявлениях
C таки кодом Action не меняется, никаких ошибок не выдается, почему?
добавлено
всё, сам понял. Так как у формы указан метод GET, то получается наложение параметров, передаваемых из самой формы и параметров, указанных в Action.
Поменял на POST - заработало.
Удалите тему кто-нибудь
Edited by d0ublezer0Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.