Ajax实现页面局部刷新

直接看代码吧!!!!!!!!!

页面中的js代码

//ajax局部加载页面
 function sortInfo(id,type){
		 $.get('${base}/artGallery/artGalleryInfo.jhtml',{'id':id,'type':type},function(data){
		 //得到data中form中的html
		// var dd= $(data).find('form').html();
		//得到data中的form
		 var dd= $(data).find('form');
			//console.info(dd);
			$("#productForm").html(dd);
		 });
 }
页面中有一个form表达来接受传入的数据。

 
[#list page.content as product] [#if product_index % 2 == 0 && product_index % 9 != 8]
[/#if] [#if product_index % 9 == 8]
[/#if]

《${product.name}》

${product.author}¥${product.price}

[#if product_index % 2 != 0]
[/#if] [/#list]
后台代码就不了,后台接受了两个参数。


你可能感兴趣的:(随笔)