JQuery Ajax获取返回html中指定的内容

比如search功能,输入关键字,在数据库中查找对应的包含关键字的记录并显示在页面上,在一段Ajax请求之后,返回html text。。。

 

需要在返回的html中找到指定id的内容用来更新页面中的对应的html内容。。。

 

比如页面:

 

  


   
       

           

           

               
               
${solution.shortDescription}

           

           

               

                    add
                    more
               

               

               

               

           

           
Solution Icon

   
           

               

           

       

   

 

 

这个时候采用ajax局部更新:

如下:

 

$.ajax({
	type : "POST",
	url : 'test.jsp',
	dataType : "html",
	success: function(data) {
	    alert( data ); // shows whole dom
	    //alert( $(data).find('#test').html() ); // returns null
            $("#test").html($(data).find("#test").html());


        },
	error : function() {
	    alert("Sorry, The requested property could not be found.");
	}
});







http://api.jquery.com/jQuery.ajax/#options



 

你可能感兴趣的:(JQuery Ajax获取返回html中指定的内容)