// about.js
function Index (){
if(!(this instanceof Index)){
return new Index();
}
this.init();
};
Index.prototype = {
init: function (){
this.getUserName();
},
getUserName: function (){
console.log(this, "江湖再见");
}
};
$(document).ready(function (){
// new Index();
Index();
});单文件js
最新推荐文章于 2025-07-29 09:56:44 发布
4290

被折叠的 条评论
为什么被折叠?



