我是 jQuery ajax 的新手。我在 magento 中创建了一个 ajax 表单。它工作正常。但现在我想在其中添加加载器图像。我的表单代码是写的
jQuery(function () {
var checkurl = URL + "customer/account/signupformpopup/";
jQuery('#alogin').click(function () {
jQuery('.cc-register-form').hide(600);
jQuery('.cc-signup-form').show("slow");
jQuery.ajax({
url: checkurl,
success: function (data) {
var $signupForm = jQuery('<div class="cc-signup-form">'+data+'</div>');
if (jQuery('#tinybox-wrap').children().hasClass('cc-signup-form')) {
return false;
}
else {
jQuery('#tinybox-wrap').append($signupForm);
}
}
})
});
});