代码之家  ›  专栏  ›  技术社区  ›  amir moradifard

如何从Jquery调用Handler(.ashx)?

  •  -2
  • amir moradifard  · 技术社区  · 11 年前

    我有一个HTTP处理程序(.ashx),它从数据库中生成一些html代码,我想从Jquery函数中调用它并传递一个值(userID)。

    我不知道如何调用它并检索它的数据。

    2 回复  |  直到 11 年前
        1
  •  7
  •   Al W    11 年前

    像这样的东西。

    $(document).ready(function() {
    
        $.get("http://path/to/handler.ashx", function(html) {
            alert(html);
        });
    
    });
    
        2
  •  4
  •   Misiu    11 年前