0

我正在使用简单的 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();
});

有什么想法或建议吗?谢谢。

4

2 回答 2

1

试试这个:

onRequest: function() {
    $('advertisement_image').set('html', '<div><img src=\"http://www.example.com/template/xxx/xx/images/loding.gif\"></div>');
}
于 2013-07-26T09:02:15.547 回答
0

函数中的单引号onRequest未正确转义。尝试转义内部引号。

于 2013-07-26T08:51:03.997 回答