Struts2 到 ajax json 响应如何在 Jsp 页面上设置图像
Struts2 to ajax json response how to set image on Jsp page
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 返回或显示在 function(response){ }.
$.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>");
});
是的,我们可以在 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/
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 返回或显示在 function(response){ }.
$.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>");
});
是的,我们可以在 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/