我有一个HTTP处理程序(.ashx),它从数据库生成一些html代码,我想从我的Jquery函数调用它并传递一个值(userID)。
我不知道如何调用它并检索其数据。
答案 0 :(得分:7)
$(document).ready(function() {
$.get("http://path/to/handler.ashx", function(html) {
alert(html);
});
});
答案 1 :(得分:4)
在输入jquery ashx
- https://sites.google.com/site/spyderhoodcommunity/tech-stuff/usingjqueryinaspnetappswithhttphandlersashx