生活随笔
收集整理的这篇文章主要介绍了
使下拉框某项不可选的方法
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
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" οnchange='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> |
转载于:https://www.cnblogs.com/y0umer/archive/2009/07/07/3839538.html
总结
以上是生活随笔为你收集整理的使下拉框某项不可选的方法的全部内容,希望文章能够帮你解决所遇到的问题。
如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。