検索ボックス付きの基本的な html フォームがあります。ユーザーが searchA または searchA-B を入力するかどうかに応じて、ユーザーを 2 つの異なる場所にリダイレクトする必要があります (URL の形式が異なります)。
どうすればいいですか?
<form name="ajaxSearchFrm" action="url1 or url2 depending on the value of searchText" method="GET">
<input type="text" id="searchText" name="searchText" style="width:200px;" onKeyUp="searchSuggest();" autocomplete="off">
<input type="submit" value="Search" style="background-color: #fff; font-family: verdana, arial, helvetica; color: black; font-size: 10px;" />
<div id="formSuggestLayer"></div>
</form>