如何在Internet Explorer 6中设置使用javascript创建的动态div标签的最大高度
我尝试了这个
Element.style.maxHeight =“ 200px”
但它不能在Internet Explorer 6.0中运行,只能在Google Chrome或M Firefox中正常运行
任何想法?
任何帮助将非常感激!谢谢!
最佳答案
IE6具有not have support for max-height属性。您可以使用javascript表达式,例如:
height:expression(this.scrollHeight>199?"200px":"auto");
获得相同的效果。请注意,客户端需要启用JavaScript才能运行。
示例:http://jsfiddle.net/niklasvh/fQpYj/