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