菜单不完全加载在Internet Explorer中?
问题描述:
我正在使用第三方控制器obout幻灯片菜单..在mozilla,opera和chrome中效果很好..为什么它在IE中不起作用?如何解决我的问题?
任何帮助都会...谢谢
i am using third party controller obout slide menu..it works good in mozilla,opera and chrome..why it is not working in IE?how to solve my problem?
any help will be appreciated...thank you
答
有两种可能性
1)你的第三方控制不支持IE
2)你使用的是旧版本的IE
更新你的IE和写代码来处理控件的宽度使用CSS
例如:
.test {
-moz-opacity:0.6;
-ms-opacity:0.6;
-webkit-opacity:0.6;
opacity:0.6;
}
你可以参考
http://code.tutsplus.com/tutorials/9-most-common-ie-bugs-and-如何修复它们 - net-7764
我认为你现在能够解决这个问题。让我知道其他查询
There are two possibilities
1) Your 3rd Party Control is not supporting IE
2) You are using older version of IE
Update you IE and Write Codes to Handle the Width of your control using CSS
for ex:
.test{
-moz-opacity: 0.6;
-ms-opacity: 0.6;
-webkit-opacity: 0.6;
opacity: 0.6;
}
You can refer to
http://code.tutsplus.com/tutorials/9-most-common-ie-bugs-and-how-to-fix-them--net-7764
I think you can now able to fix this issue. Let me know for other queries