我想使用ajax从js文件发布一个值到magento中的phtml文件, 基本上问题在于成功它会提醒页面的html代码,从doctype开始直到结束。 我希望得到正确的值,因为我需要在通过PHP调用的magento函数之一中使用它。
这是我要求改变的功能:
function getsingproduct(id)
{
var str = 'product' + id;
var currentselecteditem;
ele = document.getElementById("product" + id);
currentselecteditem = ele.options[ele.selectedIndex].value;
jQuery.ajax({
type: 'post',
data: {
curr_item: currentselecteditem
},
success: function (data) {
jQuery('#testing').text(data);
alert('data ' + data);
},
});
}
答案 0 :(得分:0)
这里有一些javascript代码:
$.ajax({
type:"POST",
url: "new_prob_submit.php",
data: {
curr_item: currentselecteditem
},
dataType: "json",
success:function(data){
alert(data);
}
});```