Jquery IE6 hover problems, keeps loading background image

前端 未结 1 1051
太阳男子
太阳男子 2020-12-22 02:40

Take a look at this page: http://pearl.tinderfields.com/

In IE6 the menu\'s background image loads every time the user hovers over a menu item, which is obviously ma

相关标签:
1条回答
  • 2020-12-22 03:05

    Read This:

    http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=1&postId=1104

    <script type="text/javascript">
    try {
     document.execCommand('BackgroundImageCache', false, true);
    } catch(e) {}
    </script>
    

    OR try CSS way

    html { 
    filter: expression(document.execCommand("BackgroundImageCache", false, true)); 
    }
    

    hope this help!

    0 讨论(0)
提交回复
热议问题