我有以下html:
<input type="text" class="searchpersontxtbox" />
<input type="button" value="Find" class="findpersonbtn btn" disabled="disabled" />
<img class="loader" style="display: none;" alt="Loading..." src="@Url.Content("~/Content/Images/ajax-loader.gif")" />
<div class="peopleresultsdiv"></div>
<div class="contactType">
<input type="radio" name="searchtype" value="person" >Person
<input type="radio" name="searchtype" value="organisation" checked="checked">Organisation
</div>
<input type="text" class="searchpersontxtbox" />
<input type="button" value="Find" class="findpersonbtn btn" disabled="disabled" />
<img class="loader" style="display: none;" alt="Loading..." src="@Url.Content("~/Content/Images/ajax-loader.gif")" />
<div class="peopleresultsdiv"></div>
<div class="contactType">
<input type="radio" name="searchtype" value="person" checked="checked">Person
<input type="radio" name="searchtype" value="organisation">Organisation
</div>
所以这里有两个搜索。我想知道的是当点击查找按钮时如何确定点击了哪个单选按钮?因此,如果在第一次单击查找按钮,它将是组织,如果在第二次搜索上单击查找按钮,它将是人员。
如果页面上只有一个搜索,我想我可以弄清楚如何做到这一点,但有两个搜索的事实让我感到困惑。