为了账号安全,请及时绑定邮箱和手机立即绑定

js压缩混淆后,其他文件怎么引用相关方法

js压缩混淆后,其他文件怎么引用相关方法

德玛西亚99 2018-12-12 14:18:24
1.压缩前的js(function () {  var Test = function (name, age) {    this.name=name;    this.age=age;  }  Test.prototype={    getName:function () {      return this.name + ' haha';    }  }  var testA = new Test('xiao',12)  // 这里获取得到 Test对象  console.log(testA.getName());})()2.压缩后的js!function(){var e=function(e,n){this.name=e,this.age=n};e.prototype={getName:function(){return this.name+" haha"}};var n=new e("xiao",12);console.log(n.getName())}();3.在html中引入压缩后的js后,var testA = new Test('xiao', 12)   // 这里找不到 Test对象  console.log(testA.getName());请问一下,js代码压缩前要怎么改写才能解决这个问题?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 353 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信