0
$('#addstflgnlink').live('click', function (e) {
    e.preventDefault();
    $.ajax({
        url: this.href,
        type: "get",
        success: function (fk) {
            $('#stflgn').append(fk);
            alert(fk);
            //            alert($('#tmpcount').val());
        },
        error: function () {
            alert("error");
        }

    });
});

这里 fk 是 ajax 调用返回的部分视图。我想在部分视图 fk 中获取#tmpcount。我怎么能在jquery中做到这一点。

4

1 回答 1

1
$('#addstflgnlink').live('click', function (e) {
    e.preventDefault();
    $.ajax({
        url: this.href,
        type: "get",
        success: function (fk) {
            var tmpcount = $(fk).find('#tmpcount');//assuming tmpcount is the id of an element
            $('#stflgn').append(tmpcount);
            alert(fk);
            //            alert(tmpcount.val());
        },
        error: function () {
            alert("error");
        }

    });
});
于 2012-11-26T04:23:51.577 回答