-1

我已经尝试了 2 周来从该站点的 API 获取和解析信息: http ://www.imei.info/api/imei/docs/ 我是 Web 开发新手(RT C++ 开发人员),我可以似乎得到的不是工作。

我的代码在这里:

<!DOCTYPE html>
<html>
<head>

    <script src="Scripts/jquery-1.4.1.js" type="text/javascript">
    </script>

    <script type="text/javascript">
        $(document).ready(function () {
            $("input").keyup(function () {
                txt = $("input").val();
                $.post("http://www.imei.info/api/checkimei/", { login: "XXX", password: "XXX", imei: "XXX" }, function (data) {
                    $("span").html(data);
                    $('#message').html(data);
                });
            });
        });
    </script>
</head>
<body>
    <p>Start typing a name in the input field below:</p>
    First name:

    <input type="text" />
    <div id="message"></div>
</body>
</html>
4

1 回答 1

0

It's returning a JSON response. You can do var responseObj = JSON.parse(data) and access the fields like responseObj.imei or responseObj.brand

于 2013-04-13T17:13:52.803 回答