简体   繁体   中英

jQuery menu not working ie (Document Mode : Quirks)

below code not working with internet explorer document mode quirks each time length of the sub menu double when mouseover on it. ... please help ..

<html>
  <head>
    <title></title>
    <script src="http://code.jquery.com/jquery-1.7.0.min.js"></script>
    <script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
    <link href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.common.min.css" rel="stylesheet" />
    <link href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.default.min.css" rel="stylesheet" />
  </head>
  <body>
    <div id="example" class="k-content">
      <div id="megaStore">
        <ul id="menu">
          <li>Products
            <ul>
              <li>Furniture
                <ul>
                  <li>Tables & Chairs</li>
                  <li>Sofas</li>
                  <li>Occasional Furniture</li>
                  <li>Childerns Furniture</li>
                  <li>Beds</li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
      </div>
      <script>
        $(document).ready(function() {
          $("#menu").kendoMenu();
        });
       </script>
     </div>
  </body>
</html>

Kendo UI doesn't support IE Quirks mode. IE renders the content with its IE5.5 engine when in this mode, which is broken even more than the IE6 mode.

Check the Supported Browsers section on the Kendo UI site: Kendo UI Demos , and the documentation: Technical Requirements

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM