博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IE6/7下Select控件Display属性无效解决办法
阅读量:6251 次
发布时间:2019-06-22

本文共 1182 字,大约阅读时间需要 3 分钟。

HTML的Select控件,C#的DropDownList服务器控件
设置父类型Display属性之后,在IE6/7上无效
直接将下段javascript脚本添加到页面中即可
 
    window.onload = function () {        if (document.getElementsByTagName) {            var s = document.getElementsByTagName("select");            if (s.length > 0) {                window.select_current = new Array();                for (var i = 0, select; select = s[i]; i++) {                    select.onfocus = function () {                        window.select_current[this.id] = this.selectedIndex;                    }                    select.onchange = function () {                        restore(this);                    }                    emulate(select);                }            }        }    }     function restore(e) {        if (e.options[e.selectedIndex].disabled) {            e.selectedIndex = window.select_current[e.id];        }    }     function emulate(e) {        for (var i = 0, option; option = e.options[i]; i++) {            if (option.disabled) {                option.style.color = "graytext";            } else {                option.style.color = "menutext";            }        }    } 

转载于:https://www.cnblogs.com/minily/p/7390913.html

你可能感兴趣的文章
使用 VisualVM 进行性能分析及调优
查看>>
用JAVA生成老电影海报
查看>>
【第三十章】 elk(1) - 第一种架构(最简架构)
查看>>
你真的知道自己每天都需要做什么吗?
查看>>
c2java select algorithm
查看>>
Java Runtime.exec
查看>>
神经网络第一步,手写数字识别的例子分享给大家
查看>>
MobX响应式编程库
查看>>
Gradle基本使用(1):安装、IDEA使用
查看>>
Linux查看用户及其权限管理
查看>>
Kentico中的skin.css的加载
查看>>
elasticsearch6.3.1 安装以及配置IK 使用
查看>>
闪聊的beta版推出了
查看>>
WCF光芒下的Web Service
查看>>
GnuPG笔记
查看>>
批处理常用命令总结2
查看>>
ubuntu双网卡bonding配置(转)
查看>>
Ubuntu 14.04 关于 TensorFlow 环境的配置
查看>>
漂亮灵活设置的jquery通知提示插件toastr
查看>>
java多线程系类:基础篇:08之join
查看>>