我有此腳本:如何解決在JavaScript中未定義的屬性?
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
有腳本從上面。
有什麼想法?謝謝。
Tord不應該自行調用。 – Christoph