我正在尝试这项工作,但它不会工作,所以如何调用在1个对象中创建的函数在另一个对象中?
// part of the plugin
Plugin.prototype = {
objectStart: function(){
function runSomeCode(){
alert('yeah');
}
},
objectEnd: function(){
runSomeCode();//not working
}
}