直到我添加了 jQuery,这才发生。
function mfunc() {}
mfunc.prototype.create = function(value) {
alert("hi");
}
结束正文标记之前的脚本:
$(document).ready(function(){
var mfunc = new mfunc();
alert("hi");
alert(mfunc.create("hello"));
});
我在萤火虫中收到以下错误:
mfunc.create 不是函数
提前致谢。