我想用AJAX做一个多条件过滤,部份代码如下:
<tr>
  <td align=right><span>重要程度:</span></td>
  <td align=left>
    <html:select property="imp">
      <html:option value="0">&nbsp;</html:option>
      <html:options collection="IMP" property="id" labelProperty="name"/>
    </html:select>
  </td>
</tr>
<tr>
  <td align=right><span>关  系:</span></td>
  <td align=left>
    <html:select property="rel">
      <html:option value="0">&nbsp;</html:option>
      <html:options collection="REL" property="id" labelProperty="name"/>
    </html:select>
  </td>
</tr>
<tr>
  <td align=right><span>地  区:</span></td>
  <td align=left>
    <html:select property="dis">
      <html:option value="0">&nbsp;</html:option>
      <html:options collection="DIS" property="id" labelProperty="name"/>
    </html:select>
  </td>
</tr>如何才能在JS同时获得多个<html:select>的值?