0
function addCart(){
    //alert('"hello"');
    var cart_id = $('input[name="cart\[\]"]:checked').map(
                              function(n){return this.value;}
                         ).get().join(',');
    //alert(cart_id);
    <?php
    echo Chtml::ajax(array(
                'url'=>array('language/addtocart'),
                'type'=>'post',
                'data'=>'js:{cart_id:cart_id}',
                'success'=>'js:function(){window.location="test"}', 
                ));
    ?>
}    
4

2 回答 2

1

您应该使用 window.location.href 和正确的 url

 window.location.href="http://localhost/test"
于 2013-05-23T10:48:29.687 回答
0

代替:

'success'=>'js:function(){window.location="test"}',

和:

'success'=>'js:function(){location.href="test"}',
于 2013-05-23T10:47:49.540 回答