Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 div 高度为 385px 的应用程序,并且它可以在除 IE 之外的所有浏览器中正常工作。
这是一个javascript示例,您可以如何做到这一点:
var browsername = navigator.appName; var yourdiv = document.getElementById("yourdivID"); if (browsername == "Microsoft Internet Explorer"){ yourdiv.style.height = "200px"; }