<div class="bord_newslist">
<table width="100%" border="0" cellspacing="1" bgcolor="#ebf1f4" class="booth_links_list2">
<c:forEach items="${list}" var="product">
  <tr>
    <td width="4%" height="60"><label><input type="checkbox" name="checkbox" value="checkbox" /></label></td>
    <td width="10%" ><a href="#"><img src="${mappath}${product.smappath}" width="50" height="50" /></a></td>
    <td width="46%" ><a href="#"><c:out value="${product.goodsname}" /></a>
<form>
<div  class="booth_cpro_ann">
<ul>
<li class="bord_public_text">商品分类:
<select name="">
       <option value="0">--请选择分类--</option>
       <c:forEach items="${sortUserList}" var="sortUser">
          <option value="<c:out value="${sortUser.goodstypeid}" />"><c:out value="${sortUser.typename}" /></option>
          </c:forEach>
     </select>&nbsp;&nbsp;
<input type="button" value="确定" class="btn_page_bg"/></li>
<li class="ico_public_close"><img  src="../images/ico_close.gif" class="pointer" onclick="self.parent.closelay();"/></li>
</ul>
</div> </form>
</td>

<td width="18%" align="center"><date:date value="${product.creattime}" /></td>
    <td width="22%" align="center"><a href="#"  onclick="changeDisplay(${product.goodsid})">移动</a></td>  </tr>
   </c:forEach>
</table>
</div>
这是一个循环出来的列表,点移动就跳出选择商品分类的框,用jquery该怎么实现呢