0

私はjqueryコードを持っています:

 $(document).ready(function () {
                $("#populateNav").click(function () {
                    $.ajax({
                        contentType: "text/html; charset=utf-8",
                        data: "Name=David",
                        url: "Fetchdata.aspx",
                        dataType: "html",
                        success: function (data) {
                            $("#data").html(data);
                        }
                    });
                });
            });

fetchdata.aspx から返される「データ」は文字列配列です。

配列を分割し、それらの文字列を 3 つの異なる場所 () に配置する方法はありますか??

返されるデータは次のとおりです。

protected void Page_Load(object sender, EventArgs e)
    {
        String []data = new string[3];
        data[0] = "New York";
        data[1] = "01914";
        data[2] = "111-111-1111";

        Response.Write(data);


        Response.End();
    }
4

0 に答える 0