首页 > 其他 > 详细

使下拉框某项不可选的方法

时间:2014-08-02 18:12:03      阅读:318      评论:0      收藏:0      [点我收藏+]

<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>

使下拉框某项不可选的方法,布布扣,bubuko.com

使下拉框某项不可选的方法

原文:http://www.cnblogs.com/aersliing/p/3887262.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!