当前位置: 代码迷 >> Web前端 >> jquery autoComplete 自动完成 输入提醒 IE7 IE8 bug 卷轴 滚动条不显示
  详细解决方案

jquery autoComplete 自动完成 输入提醒 IE7 IE8 bug 卷轴 滚动条不显示

热度:674   发布时间:2012-11-01 11:11:31.0
jquery autoComplete 自动完成 输入提示 IE7 IE8 bug 卷轴 滚动条不显示

问:
jquery的autocomolete插件,设置了滚动属性,在Chrome里正常,但是在IE8里不出现滚动条,有没有遇到类似问题的,怎么解决?

答:
看老外写的,意思是修改autocomolete.js的第735行,我的解决了。

if($.browser.msie && ((typeof document.body.style.maxHeight === "undefined") || (document.body.style.maxHeight == '')))

看清楚 就是变
typeof document.body.style.maxHeight === "undefined"
复制代码


((typeof document.body.style.maxHeight === "undefined") || (document.body.style.maxHeight == ''))
复制代码
  相关解决方案