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 笔记 —— SVN和FTP的安装
    在.NET中使用Javascript作为脚本语言(v8最新版)
    回调的经典应用
    Javascript.NET(V8Wrapper) 更新,自定义映射别名
    SQLServer 的视图自带缓存特效?!
    关于 Twing Hot Link 的一些事
    Twing Hot Link For PSP 开发笔记(1)
    新闻发布系统
    Spring MVC入门讲解
    f(f(x))=x, 纯数学理解
  • 原文地址:https://www.cnblogs.com/y0umer/p/3839538.html
Copyright © 2011-2022 走看看