jQuery选项卡在Internet Explorer中不起作用,但在Chrome中不起作用

时间:2013-11-06 18:21:40

标签: javascript jquery html asp.net google-chrome

我需要一些我正在构建的Web应用程序的帮助。 我正在使用jQuery选项卡。我有两个页面,index.aspx和login.aspx。您从索引页面开始,当您登录时,您将进入登录页面。 如果我正在运行Google Chrome,那么这两个标签页面都会正常运行。但是,如果我正在运行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)
        }
    });
});

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

login.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>

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

1 个答案:

答案 0 :(得分:1)

问题在于:

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

jquery 2.x不支持IE&lt; 10

你可能不需要两个jquery包括,只需删除它。