1

我需要一些关于我正在构建的 Web 应用程序的帮助。我正在使用 jQuery 选项卡。我有两个页面,index.aspx 和 login.aspx。您从索引页面开始,登录后进入登录页面。如果我运行的是谷歌浏览器,那么两个页面上的标签都可以工作。但是,如果我运行 IE,第一页 (index.aspx) 可以完美运行,但是当我进入 login.aspx 时,程序会中断并跳转到 JavaScript 文件并停止。

在 JavaScript 文件中,我有以下代码:

$(document).ready(function () {
    $(function () {
        $("#tabs").tabs();
    });
});


$(document).ready(function () {
    var index = 'key';
    var dataStore = window.sessionStorage;
    try {
        var oldIndex = dataStore.getItem(index);
    }
    catch (e) {
        var oldIndex = 0;
    }
    $('#tabs').tabs({
        active: oldIndex,
        activate: function (event, ui) {
            var newIndex = ui.newTab.parent().children().index(ui.newTab);
            dataStore.setItem(index, newIndex)
        }
    });
});

它首先停在底部功能,如果我按继续,它会停在顶部功能。我收到的错误消息是“对象不支持此属性或方法”

登录.aspx:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="login.aspx.cs" Inherits="Projekt.login" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
      <meta charset="utf-8" />
<title></title>

</head>
<body>
<form id="myform" runat="server">
<div id="content-wrapper">
<div id="content">
<div id="tabs">
  <ul>
    <li><a href="#tabs-1">tab1</a></li>
    <li><a href="#tabs-2">tab2</a></li>
    <li><a href="#tabs-3">tab3</a></li>
  </ul>

    <div id="tabs-1">
      </div>

 <div id="tabs-2">
       </div>

  <div id="tabs-3">
      </div>

  </div>
</div>   
</div>


<div id="header-wrapper">
    <div id="header" style="height: 81px; top: 0px; left: -1px;">
          </div>
</div>

<div id="footer-wrapper">
    <div id="footer">
                 </div>
</div>

</form>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<link rel="stylesheet" href="myCSS.css" type="text/css"/>
<script src="JSprojekt.js" type="text/javascript"></script>


<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-2.0.3.js" type="text/javascript"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.js" type="text/javascript"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/additional-methods.js" type="text/javascript"></script>
</body>
</html>

请保持简单,我是新手。非常感谢!

4

1 回答 1

1

问题在这里:

<script src="http://code.jquery.com/jquery-2.0.3.js" type="text/javascript"></script>

jquery 2.x 不支持 IE<10

无论如何,您可能都不需要两个 jquery 包含,只需将其删除即可。

于 2013-11-06T18:25:06.683 回答