我正在使用简单的 ajax 功能与 mootool 一起显示加载图像。我在 onRequest 上添加了加载图像,但没有工作。我的代码有什么问题吗。我正在Uncaught SyntaxError: Unexpected token }
追}).send();
我的代码:
$('nextButtonForm2').addEvent('click', function(e) {
e.stop();
var url = 'index.php?option=com_property&view=property&task=advertisementBox&format=raw';
var x = new Request({
url: url,
method: 'post',
onSuccess: function(responseText) {
document.getElementById('advertisement_image').innerHTML = responseText;
},
onRequest: function() {
$('advertisement_image').set('html', '<div><img src='http:
//www.example.com/template/xxx/xx/images/loding.gif'></div>');
}
}).send();
});
有什么想法或建议吗?谢谢。