首页 > 代码库 > magento中的ajax

magento中的ajax

<script type="text/javascript">
        function loadRecommend(){
         $.ajax({
                url:homeUrl+‘index.php‘,
                 type : ‘get‘,
                data :‘com=index&t=loadRecommend‘,
                dataType:‘html‘,
                success:function(html){
                    $(‘#recommendations .index_product_list‘).replaceWith(html);
                    }
            });
        }
        loadRecommend();
</script>

magento中的ajax