在Prototype Js中使用Ajax时首先出现的是什么 - 调用onComplete或onSuccess函数?我认为onSuccess应该是第一个,但是当我的代码被执行时,onComplete总是第一个......你知道为什么吗?
代码是:
request = new Ajax.Request(
this.saveUrl,
{
method: 'post',
onComplete: this.shippingSave(wait),
onSuccess: this.onSave,
...