首页 > 代码库 > js对象写法

js对象写法

var myexports={};  //创建对象myexports.init = function(){  myexports.moreTxt();//调用函数  };          myexports.moreTxt = function(){                      //定义函数并写函数$(function() {    myexports.init();      //调用对象});

 

js对象写法