$('#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中做到这一点。
答案 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");
}
});
});