我正在使用以下 jQuery 代码在 ASPX 页面中填充我的 DIV
var div = $("#divPrice");
div.fadeOut('slow',function(){
div.load("../Lib/handlers/GetPrice.aspx?answers="+queryValues+"&item="+modelId,{ symbol: $("#txtSymbol" ).val() },function()
{
$(this).fadeIn('slow');
});
});
$("#divBtns").fadeIn('slow');
这工作正常。在 Getprice.aspx
中,它将返回一个 HTML,并将其加载到 div 中。现在我想将另一个数字连同这个 HTML 返回到我的 javascript。我怎样才能做到这一点?