zoukankan      html  css  js  c++  java
  • select标签HTML,刚做地。

    <HTML>
    <HEAD>
    <TITLE>页面选择</TITLE>
    <script language='javascript'>
    function selectC()
     {
     
      //var   obj=document.getElementById("b");  
     
      for(var   k=0;k<document.form1.select.length+1;k++)
      {    
        document.form1.select.options.remove( document.form1.select[k]);      //删除所有b下拉列表框中的内容
      } 
      
      if (document.all("bm").value=="生产部")
      {
        document.form1.select.remove(0);
        document.form1.select.options[document.form1.select.options.length]   =   new   Option('工程',  0); 
        document.form1.select.options[document.form1.select.options.length]   =   new   Option('品管',  1);
      }
     
      if (document.all("bm").value=="业务部")
      {
        document.form1.select.remove(0);  
        document.form1.select.options[document.form1.select.options.length]   =   new   Option('总经理',  0);  
        document.form1.select.options[document.form1.select.options.length]   =   new   Option('部门经理',  1);
        document.form1.select.options[document.form1.select.options.length]   =   new   Option('业务助理',  2);   
        document.form1.select.options[document.form1.select.options.length]   =   new   Option('业务员',  3); 
      }
    }
    </script>
    </HEAD>

    <BODY>
     <form name="form1" method="post" action="">
      <select id='bm' name='bm' onchange='selectC()'>
      <option value="请选择">请选择</option>
      <option value="业务部">业务部</option>
      <option value="生产部">生产部</option>
     
      </select>
     <select id='select' name='select' >
       <option value="请选择">请选择</option>
     </select>
     </form>
    </BODY>
    </HTML>

     

  • 相关阅读:
    ORA-28000: the account is locked-的解决办法
    j对ava序列化的学习理解
    Oracle数据库中的时间格式和java中时间格式的转换
    抽象类和接口的区别
    glVertexAttribPointer
    运算符重载
    lua回调时把函数当参数传递时需注意的事项
    visual studio 编译文件生成路径
    UITableView自定义Cell中,纯代码编程动态获取高度
    ASP.NET发送邮件(QQ发送)
  • 原文地址:https://www.cnblogs.com/xinxindiandeng/p/1283656.html
Copyright © 2011-2022 走看看