我正在使用原型js和scriptaculous sortable但是当我做一个不完整的警报或任何事情时,它不起作用。可排序和所有代码都运行良好,但onComplete不起作用。
这是mycode
<script>
Event.observe(window,'load',init,false);
function init() {
Sortable.create('listContainer',{tag:'div',onUpdate:updateList});
}
function updateList(container) {
var url = 'ajax.php';
var params = Sortable.serialize(container.id);
var ajax = new Ajax.Request(url,{
method: 'post',
parameters: params,
onLoading: function(){$('workingMsg').show()},
onLoaded: function(){$('workingMsg').hide()},
onComplete: function(){ alert('good'); }
});
}
function handleResponse(req) {
// this function will fire after the ajax request is complete...but we have nothing to do here
}
</script>
当我启动该功能时,一切都很完美,除了onComplete没有发送警报这一事实。
如何让Prototypejs onComplete发出警报?