在Magentowith Ajax中添加产品后的成功消息

时间:2013-04-26 08:45:32

标签: javascript ajax json magento message

我知道通过Firebug Json在成功之后会生成一条消息:函数但无法找到如何显示它...所以我尝试添加这个:

if(data.status == 'ERROR'){
                        jQuery("#ajax_message").html("product out of stock.").hide().fadeIn().delay(10000).fadeOut();
                    }else{if(data.status == 'SUCCESS'){
                             jQuery("#ajax_message").html("product added.").hide().fadeIn().delay(10000).fadeOut();
                        } 

但是在添加产品后没有任何事情发生..

任何想法?

1 个答案:

答案 0 :(得分:0)

检查您是否在data.status中获得了响应

检查是否存在混淆。使用noConflict。 .hide会隐藏div

希望你解决了它:)