-2

データベースからいくつかの html コードを生成する HTTP ハンドラー (.ashx) があり、それを Jquery 関数から呼び出して値 (userID) を渡したいと考えています。

それを呼び出してデータを取得する方法がわかりません。

4

2 に答える 2

7

このようなもの。

$(document).ready(function() {

    $.get("http://path/to/handler.ashx", function(html) {
        alert(html);
    });

});
于 2013-03-08T07:52:05.753 に答える
4

Googleを使用するjquery ashx-入力後の最初のサイト-https ://sites.google.com/site/spyderhoodcommunity/tech-stuff/usingjqueryinaspnetappswithhttphandlersashx

于 2013-03-08T07:54:15.567 に答える