我有这个脚本:
var Tord = (function () {
Tord.prototype.getHeader = function () {
alert('test');
};
return Tord;
})();
$(document).ready(function() {
var tod = new Tord();
tod.getHeader();
});
我收到错误Uncaught TypeError: Cannot read property 'prototype' of undefined
第 3 行
我不明白为什么?
这是我的js文件的加载方式:
<link rel="stylesheet" href="public/jquery.mobile/jquery.mobile-1.2.0.min.css" />
<link rel="stylesheet" href="public/style.css" />
<script src="public/jquery-1.8.3.min.js"></script>
<script src="public/jquery.mobile/jquery.mobile-1.2.0.min.js"></script>
<script type="text/javascript" charset="utf-8" src="public/cordova-2.2.0.js"></script>
<script type="text/javascript" charset="utf-8" src="public/script.js"></script>
script.js
有上面的脚本。
有任何想法吗?谢谢。