I have a Javascript object in an external js file that looks like this:
function SomeObj() {
this.property = 0;
this.property = null;
}
SomeObj.prototype = {
methodA: function() {},
methodB: function() {}
}
In my View files, I load it like this:
<script type ="text/javascript" src="someObj.js"></script>
And in jQuery, I instantiate it like this:
<script type = "text/javascript">
var someObject = new SomeObj();
</script>
At this point. console.log
spits out the UncaughtReference error saying someObj
is not defined.
怎么了 ?帮助我提前谢谢