zoukankan      html  css  js  c++  java
  • HTML select标签实现跳转

    <table width="800" border="1" align="center">
        <tr>
            <td colspan="2">
            <form name="form1" method="post"><select name="select"
                class="menu" onchange="document.getElementById('form1').submit();">
                <option value="0">选择类型</option>
                <option value="1">单选调查</option>
                <option value="2">多选调查</option>
                <option value="3">填写调查</option>
            </select></form>
            </td>
        </tr>
    <%
              if(request.getParameter("select")!=null)
              {
                  int choice = Integer.parseInt(request.getParameter("select"));
                  switch (choice) {
                  case 1: {
                  

    %>

    <form>

    <tr>

    <td align="left" width="150"><input type="checkbox" onclick="if(this.checked){document.all.SurveyTitle.disabled=false;}if(!this.checked){document.all.SurveyTitle.disabled=true;}">调查标题:</td>
    <td><input type="text" name="SurveyTitle" id="SurveyTitle" size="50" disabled="disabled"/>*

    </td></tr>

    </form>

    <%

                break;
                  }
                    case 2: {

        %>

    <form><tr><td>2</td></tr></form>

        <%
            break;
                    }
                    case 3: {

        %>

    <form><tr><td>3</td></tr></form>

     <%
            break;
                    }
                    }
                } else {
        %>
        <tr>
    <form><tr><td>0</td></tr></form>
        </tr>
        <%
            }
        %>

     


  • 相关阅读:
    Android 颜色配置表-颜色类
    Android模拟器——Genymotion
    Android-adb shell 读取手机系统文件
    android webview js交互 第一节 (java和js交互)
    Android源码目录结构详解(转载)
    BlockingQueue深入分析(转)
    RUDP之三 —— Virtual Connection over UDP
    RUDP之二 —— Sending and Receiving Packets
    OSS层基础:平台区分
    RUDP之一 —— UDP VS TCP
  • 原文地址:https://www.cnblogs.com/xinxindiandeng/p/1327267.html
Copyright © 2011-2022 走看看