zoukankan      html  css  js  c++  java
  • 连动html(select)标签操作 原创(create by le)

     代码是最好的解释,请看代码,呵呵!

    代码
      function ChangeCustomId(obj) {
                
    var opt = obj.options[obj.selectedIndex]
                
    //alert("The option you select is:" + opt.text + "(" + opt.value + ")");
     
                
    var opt = obj.options[obj.selectedIndex]
                
    var selectItem = document.getElementsByName("mySelect1");
                
    for (i = 0; i < selectItem.length; i++) {
                    selectItem[i].selectedIndex 
    = obj.selectedIndex;
                }
            }
    <
    select id="mySelect" name="mySelect" onchange="ChangeCustomId(this)"><option>1</option>
    <option>4</option>
    <option>5</option>
    <option>6</option>
    <option>9</option>
    <option>10</option>
    <option>14</option>
    <option>15</option>
    <option>16</option>
    </select>
                
    </th>

    function ChangeCustomId(obj) {
                var opt = obj.options[obj.selectedIndex]
                //alert("The option you select is:" + opt.text + "(" + opt.value + ")");

                var opt = obj.options[obj.selectedIndex]
                var selectItem = document.getElementsByName("mySelect1");
                for (i = 0; i < selectItem.length; i++) {
                    selectItem[i].selectedIndex = obj.selectedIndex;
                }
            }

  • 相关阅读:
    图片放大镜
    带左右箭头切换的自动滚动图片JS特效
    jquery网站左侧弹出导航菜单
    网页滚动到底部自动加载
    php访问方法外变量
    图片上传预览
    GET方式,获取服务器文件
    php 邮件发送代码-php邮件群发
    java正则
    sql之left join、right join、inner join的区别
  • 原文地址:https://www.cnblogs.com/chenli0513/p/1865977.html
Copyright © 2011-2022 走看看