哪些浏览器的DIV不能盖住SELECT?

来源:百度知道 编辑:UC知道 时间:2024/05/16 00:19:19
请问常用的浏览器有哪些,哪些浏览器的DIV不能盖住SELECT?
如何用JAVASCRIPT判断这些浏览器?
对 janhoosan 回答的补充:
非常感谢 janhoosan 的回答,但是还有一个问题没有说清楚,常见的浏览器里面,有哪些是不能覆盖SELECT的,就

select控件时窗口级的控件,所以会悬浮在一般控件的上面,这有一篇文章介绍select控件这个特性的
http://www.webjx.com/html-xhtml/webxhtml-13110.html
判断浏览器
http://hi.baidu.com/wuweiwei/blog/item/f4cba8c299a3ab130ff47741.html
<script type="text/javascript">
var Sys = {};
var ua = navigator.userAgent.toLowerCase();
if (window.ActiveXObject)
Sys.ie = ua.match(/msie ([\d.]+)/)[1]
else if (document.getBoxObjectFor)
Sys.firefox = ua.match(/firefox\/([\d.]+)/)[1]
else if (window.MessageEvent && !document.getBoxObjectFor)
Sys.chrome = ua.match(/chrome\/([\d.]+)/)[1]
else if (window.opera)
Sys.opera = ua.match