在NewsView.js里有这么一行代码
[code="java"]
NewsView.prototype.gridLand= function() {
var data1=[ [1, 'asdasd', 'asdasd'],
[2, 'bsvbcv', 'asdwq1'] ];
var store1=new Ext.data.SimpleStore({data:data1,fields:["id","name","mina"]});
var grid1 = new Ext.grid.GridPanel({
id : 'LandGrid',
trackMouseOver : true,
disableSelection : false,
autoScroll : true,
loadMask : true,
sortable : false,
height:150,
width:500,
columns:[{header:"sawayika",dataIndex:"name"},
{header:"yisilan",dataIndex:"mina"}],
store:store1,
});
return grid1;
};
[/code]
如果把NewsView看做一个类的话,那么gridLand就是这个类得一个方法 这样理解没错吧
我在另外一个js文件里是这么调用的
[code="java"]
var view=new NewsView();
alert(view.gridLand()); //alert一下看是不是object
[/code]
报错啊,没有gridLand这个方法
好吧换个方式
[code="java"]
new NewsView().gridLand();
new NewsView().gridLand;
NewsView().gridLand();
NewsView().gridLand;
NewsView.gridLand();
NewsView.gridLand;
gridLand;
gridLand();
[/code]
各种组合我都试完了,这tm到底是要闹那样啊
亲们,你说怎么拿到这个object?