zoukankan      html  css  js  c++  java
  • 使下拉框某项不可选的方法

    2008年02月22日 02:24 P.M.

    <html>
       <head>
        <style type="text/css">
        option.disabled { color: #999;}
        </style>


        <script>
         function preventSelectDisabled(oSelect)
         {    var isOptionDisabled = oSelect.options[oSelect.selectedIndex].disabled;   
        if(isOptionDisabled)
        {      
        oSelect.selectedIndex = oSelect.defaultSelectedIndex;       
        return false;   
        }  
        else oSelect.defaultSelectedIndex = oSelect.selectedIndex;    return true;
          }

        </script>


       </head>
       <body>
       <select name="Type" id="ReportName" class="textinput"
            onchange='return preventSelectDisabled(this)'>
            <option value="reportAsset">
              Positions Summary
            </option>

            <option value="reportOptions">
              Account Transactions
            </option>
            <option value="reportOptions">
              Performance Summary
            </option>

            <option disabled='disabled' class='disabled'>

              Asset Allocations
            </option>
           
            <option disabled='disabled' class='disabled'>
              Options Tracking
            </option>

            <option disabled='disabled' class='disabled'>
              Historical Variance
            </option>

            <option disabled='disabled' class='disabled'>
              Portfolio Statistics
            </option>
          </select>
          </body>

  • 相关阅读:
    荷兰国旗问题
    读取文件中数据到数组
    从五个球中选出3个枚举的简单运用
    搜索算法总结
    匿名对象
    欧几里得距离C++代码实现
    用递归法吧字符串S倒序
    利用系统来完成十进制,十六进制,八进制的转换
    DBHelper 使用的是存储过程
    DBHelper的一个小例子
  • 原文地址:https://www.cnblogs.com/y0umer/p/3839538.html
Copyright © 2011-2022 走看看