0

電話番号を取得するために別のドキュメントに電話をかけようとしています。残念ながら、正しく機能していないようで、正しい電話番号を取得できません。コードに電話番号を設定する方法はありますか? 現在、私のコードは次のようになっています。

   function setTollNo() {
        $.ajax({
            type: "POST",
            url: "/PURLService.asmx/GetTollNo",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function(html) {
                $("[id*=tollNo]").html(html.d);
            },
            error: function() { alert('error'); }
        });
    }

以下のような内容でいいのでしょうか?

tollNo = 18005557755

4

1 に答える 1

0

私はあなたが探していると思います

function setTollNo() {
    $.ajax({
        type: "POST",
        data: { tollNo: '18005557755' },
        url: "/PURLService.asmx/GetTollNo",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(html) {
            $("[id*=tollNo]").html(html.d);
        },
        error: function() { alert('error'); }
    });
}

jQuery.ajaxドキュメントに移動し、「例」を検索します。

于 2012-08-14T16:51:14.080 に答える