我正在开发一个应用程序。因为我想附加ajax响应 使用jquery mobile的弹出窗口。所以如何追加它。我发帖了一些 很少的代码。我想在 d2 id 上添加id为tag的响应。 我的ajax代码
$("#b1").click(function(){
$.ajax({
type:"post",
url:"http://localhost/register.php",
data: $("#frm").serialize(),
success:function(response)
{
$("#d2").html(response);
},
error:function(response)
{
}
});
});
答案 0 :(得分:0)
像这样:
$("#d2").html(response.responseText);
请参阅:http://www.tutorialspoint.com/prototype/prototype_ajax_response.htm