0

jQuery $.post:

$.post(
    'includes/studiesAjax/addTryb.php',
    {inputVL: inputVL},
    function(res){
        $("#container").html(res);
    }
);

响应是长 html 代码

我想从响应 beetween<p>标签的第一行中提取数据,将其与响应分开并分配给新变量。怎么做?

4

3 回答 3

3
function(res){
    var newVar = $(res).find('p:first').html();
}
于 2012-08-06T10:13:11.607 回答
0

您应该将响应转换为 jquery 对象,然后您可以照常操作:

$.post(
            'includes/studiesAjax/addTryb.php',
            {inputVL: inputVL},
            function(res){
                var result = $(res).find('p:first').html();
                $("#container").html(result );
            }
        );
于 2012-08-06T10:15:00.297 回答
0

如果你返回 json 而不是 html 你可以这样做。

       $.post(
            'includes/studiesAjax/addTryb.php',
            {inputVL: inputVL},
            function(res){
                var data = JSON.parse(res);
                if(data && data.response1){
                    result = (data.response1);
                    console.log(result);
                }
                if(data && data.response2)
                    $("#container").html(data.response2);
            }
        );
于 2012-08-06T10:16:25.763 回答