从函数

时间:2015-06-25 01:38:36

标签: javascript json

var POS = {

PriceLookUp: function (SKU) {
            $.ajax({
                type: 'GET',
                data: 'SKU=' + SKU,
                url: '@Url.Action("GetProduct", "POS")',
                success: function (data) {
                    if (data["found"] == "true") {
                        var price = data["price"];
                        alert(price);/// this works
                        return price;
                    }
                    else {
                        alert("Item could not be found.");
                        return;
                    }
                },
                error: function (req, status, errorObj) {
                    alert(errorObj.toString());
                }
            });
        }

}

如果有这个功能它总是返回“undefined” 我尝试用alert()测试它...结果是正确的

为什么我的函数总是返回“未定义”?

0 个答案:

没有答案