Struts2 to ajax json response can we set it on jsp first and display jsp as response inside
ajax的成功 这里是使用jquery中的动态值编写jsp / html标签变得非常痛苦的代码所以有没有办法在响应后我们可以在jsp中显示html并返回jsp或在函数内显示(response){}。 / p>
$.post("add_cmt?content1="+comment_text+"&postupload_id1="+getpID, {
}, function(response){
$('#CommentPosted'+getpID).prepend("<div>"+'<img src="images/'+comment_userid+"/"+comment_album+"/"+comment_pic +'" width="50" height="50" />'+"<b>"+comment_name+"</b>"+" "+comment_text+"<br/>"+"few Seconds ago"+"</div>");
});
答案 0 :(得分:0)
是的,我们可以在ajax响应中发送jsp / html页面
创建一个jsp页面,您希望获得该响应,然后在$post
任何div中的成功显示响应
$.post("add_cmt?content1="+comment_text+"&postupload_id1="+getpID, {
}, function(response){
$('#CommentPosted'+getpID).prepend(response);
});
Ajax jsp
您的内容
有关更好的解释,请参阅此处 http://ebhor.com/html-jsp-page-response-in-ajax-get-method/