且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在不加载资源的情况下解析AJAX响应?

更新时间:2022-05-10 00:29:52

您应该能够在return函数中解析响应.

You should be able to parse the response inside the return function.

$.get(url, data, function(html)
{
    // Parse here
});