var com = {};
var com.Project = function(){
this.display = function(){
alert("hai.....");
}
}
var project_obj = new com.Project();
在创建 project_obj 时,我在 IE9 中遇到错误,例如“对象不支持此操作”
此代码在 Firefox 和 chrome 中运行良好。我已经给出了一个示例代码。我正在尝试在 javastript 中使用类和包概念。
我不知道为什么这个错误出现在 IE 中。