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>

  • 相关阅读:
    linux shell中 if else以及大于、小于、等于逻辑表达式
    下载chrome插件和离线安装CRX文件的方法
    ROM、PROM、EPROM、EEPROM、FLASH ROM简介
    Scientific Toolworks Understand
    C和C++相互调用
    ubuntu 问题
    ubuntu 精简配置
    Linux i2c 读写程序
    是armhf,还是armel?
    Linux Free命令每个数字的含义 和 cache 、buffer的区别
  • 原文地址:https://www.cnblogs.com/y0umer/p/3839538.html
Copyright © 2011-2022 走看看