我一直在
未捕获的TypeError:无法读取未定义的属性“msie”
当我尝试从couchdb控制日志视图时。我是编码的新手,我不知道这个错误意味着什么。当我使用ajax调用基本上做同样的事情它工作并从我的沙发数据库拉取视图。这是为了学校,所以我需要让沙发呼叫工作。谢谢你的帮助。
HTML:
<html>
<head>
<title>SK8
TEAMS</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.flatui.css"/>
<script src="jquery-1.9.1.min.js"></script>
<script src="jquery.mobile-1.3.2.min.js"></script>
<link rel="stylesheet" href="style/main.css"/>
</head>
<body>
<section data-role="page" id="home" data-theme="c">
<section data-role="header" data-position="fixed">
<h1>Home</h1>
</section>
<section data-role="content" class="ui-body-c">
<ul id="homeItems" data-role="listview">
</ul>
</section>
</section>
<script src="jquery.couch.js"></script>
<script src="my.js" type="text/javascript"></script>
</body>
JAVASCRIPT:
$(document).on('pageinit', '#home',
function () {
$.couch.db("sk8team").view("app/company", {
success: function (data) {
console.log(data);
}
});
});
答案 0 :(得分:4)
做了一点研究,问题是沙发与JQuery 1.9不兼容,尝试使用旧版本的JQuery或使用浏览器支持插件。
答案 1 :(得分:4)
我也有类似的错误,但我解决了。它是我从Stack Overflow获得的一段代码。只需将其粘贴到脚本中即可。并下载最新版本的jQuery。我用了jquery-1.10.2.js。
JavaScript的:
jQuery.browser = {};
(function () {
jQuery.browser.msie = false;
jQuery.browser.version = 0;
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
jQuery.browser.msie = true;
jQuery.browser.version = RegExp.$1;
}
})();
答案 2 :(得分:3)
$.browser
,您可以使用navigator.userAgent
或jQuery.migrate
插件。