これが私のJSの簡略版です:
var myObject = function() {
return {
functionOne: function() {
//some other logic here
},
functionTwo: function() {
var self = this;
//some logic here
//then call functionOne
self.functionOne();
}
};
}
それから私はこれを私のhtmlの本文に持っています:
<a href="#" onclick="myObject.functionTwo()">click me</a>
リンクをクリックするとUncaught TypeError: Object [some url] has no method 'functionOne'というエラーが表示されるのはなぜですか?