我有一个带有搜索框的基本 html 表单。如果用户输入 searchA 或 searchA-B,我需要将他重定向到两个不同的地方(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>