网页下拉列表表单select添加超链接的实现方法

发布时间:2019-09-30编辑:脚本学堂
本文介绍下,如何为网页中的下拉列表表单select添加上超链接的方法,有需要的朋友,可以参考学习下。

代码如下:
 

复制代码 代码示例:
<div>
<select name="allTypeID" onChange="location.replace(this.options[this.selectedIndex].value)">
<%
for(int i=0;i<allTypeList.size();i++){
AllTypeForm form=(AllTypeForm)allTypeList.get(i);
%>
<option value="yd_ProfessionalCategorySelect.jsp?allTypeID=<%=form.getAllTypeID()%>"   
<%
if(request.getParameter("allTypeID")!=null) {
if((form.getAllTypeID())==(Integer.valueOf(request.getParameter("allTypeID")))){
%>
selected="selected" //找到前一次所点下拉别表的名称
<%}} %>
>
<%=form.getAllTypeName() %>
</option>
<%} %>
</select>  
</div>

把select部分抽取出来就是:
 

<select onChange="location.replace(this.options[this.selectedIndex].value)">
<option value="URL">URL</option>
<option value="URL">URL</option>
</select>