我希望 this.item 类的实例由通过 jQuery.post 后继函数接收的数据填充。我可以使用另一个用户定义的函数来设置 this.item 与接收到的数据来做到这一点。
问题:有没有办法在 jQuer.post() 的后继函数中设置 this.item 而不使用任何其他用户定义的函数?
以下是代码片段
内部类原型函数:-
this.item = new Array();
jQuery.post("index.php?p=getdataitem", fileobj,function(item_str_data)
{
...
this.item = ....;
...
}
);
谢谢你