综合百科

Html下拉列表菜单与跳转菜单怎么实现

一、Form select语法与结构:

<selectname=""><optionvalue="0">DIVCSS5</option><optionvalue="1">DIVCSS5</option></select>

二、Form select标签使用说明:

为什么我们要使用Form select下来菜单列表呢?那是我们用于表单下拉选择所需项。

下面CSS技术DIVCSS5为大家介绍常见html Form select使用地方。

我们使用表单下拉列表选择数据,如省、市、县、年、月等数据,我们即可使用下拉菜单表单进行设置。
select 我下拉列表菜单标签
Option为下拉列表数据标签
Value 为Option的数据值(用于数据的传值)

三、Form select使用种类:

Select下拉菜单列表表单标签,常使用有两种

1)、普通下拉列表菜单
html代码如下:

<formaction=""method="get"><label>1、普通下拉列表菜单</label><selectname=""><optionvalue="0">DIVCSS5</option><optionvalue="1">DIVCSS5</option></select></form>

2)、跳转下拉列表菜单(如常见点击后跳转到选择网站)
常常一些网站做友情链接,与部门之间使用select下拉标签实现网址跳转。下面我们通过代码与案例接受select跳转菜单应用。

跳转菜单html代码如下:

  1. <formaction=""method="get">

  2. <label>2、跳转的下拉列表菜单</label>

  3. <selectname="jumpMenu"id="jumpMenu"
    onchange="MM_jumpMenu('parent',this,0)">

  4. <optionvalue="http://www.DIVCSS5.com/">DIVCSS5</option>

  5. <optionvalue="http://www.亿速云.com/">DIVCSS5</option>

  6. </select>

  7. </form>

实现跳转还需要在head标签内加入Js脚本动作代码:

<scripttype="text/javascript"><!--functionMM_jumpMenu(targ,selObj,restore){//v3.0eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");if(restore)selObj.selectedIndex=0;}//--></script>

即可使用表单select控件实现跳转的列表菜单效果。

3)、更简洁的新建浏览器(选项卡)窗口跳转菜单:
只需<select>标签内加入如下代码:

onchange="javascript:if (this.options[this.selectedIndex].value != '') window.open(this.options[this.selectedIndex].value);this.options[0].selected;"

得到以下代码:

  1. <selectonchange="javascript:if(this.options[this.selectedIndex].value!='')
    window.open(this.options[this.selectedIndex].value);this.options[0].selected;">

完整简单新打开网页窗口跳转菜单实例:

  1. <formaction=""method="get">

  2. <label>新建浏览器网页窗口下拉跳转菜单</label>

  3. <selectname=""onchange="javascript:if (this.options[this.selectedIndex].value != '')
    window.open(this.options[this.selectedIndex].value);this.options[0].selected;">

  4. <optionvalue="0">DIVCSS5</option>

  5. <optionvalue="1">DIVCSS5</option>

  6. </select>

  7. </form>

四、DW软件里截图表单效果:

五、此select表单标签案例在浏览器中效果: