遍历html元素从一个视图到另一个视图

时间:2012-11-26 04:18:50

标签: jquery jquery-selectors

$('#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中做到这一点。

1 个答案:

答案 0 :(得分: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");
        }

    });
});