选择选项后,重定向无效

时间:2016-07-19 13:24:30

标签: javascript php ajax magento

我们正在显示品牌和广告的下拉选项模型here

demonstration

选择下拉选项&如果我们点击" 查看案例",我们希望将所选选项重定向到特定网址作为名称。

我们正在做一些AJAX代码。当我们点击按钮时,它会显示正确的模型和品牌ID ,但不会重定向到正确的网址。

我们想要here

之类的东西

PHP

<a href="#" onclick="geturlandredirec()"><span class ="cc5"> See Cases > </span> </a>

脚本

<script>
 function geturlandredirec()
{

 var brand=$('brand_select').value;
 var model=$('model_select').value;
 array = [brand, model];

  alert(array)

   url="<?php echo Mage::getbaseUrl()?>customized-mobile-cases/customcase/ajax";

   new Ajax.Request(url, {
       method: 'POST',

         onFailure: function(response){
   },
parameters: {
    brand: brand, model: model
  },
 onSuccess: function(response)
 {
            window.location = response.responseText
   return ;
 }
     });
}

 </script>

1 个答案:

答案 0 :(得分:1)

您正尝试从服务器重定向成功的响应,但URL返回404 Not Found。