magento:自定义ajax调用下拉列表更改

时间:2014-11-22 15:48:55

标签: javascript php jquery ajax magento

我将custom.js添加到我的产品编辑页面

我添加了id" getdata"现在有另一个文件,根据用户在下拉列表中选择的内容显示值

我需要使用dropddown的值对其他页面执行ajax调用,调用ajax很简单我想使用magento内置调用ajax url和loader的方式也可以这样做吗?

我写了下面的代码但它现在正在工作

function myajaxcall(id){
new Ajax.Request('/a.php?id='+id, {
  onSuccess: function(response) {
    alert(response);
  }
});
}

我缺少什么请帮助

1 个答案:

答案 0 :(得分:0)

尝试使用以下代码:

    function myajaxcall(id){

new Ajax.Request('a.php?id='+id, {
  method:'get',
  onSuccess: function(data) {
    var response = data.responseText || "no response text";
    alert("Success! \n\n" + response);
  },
  onFailure: function() { alert('Something went wrong...'); }
});
}