函数后没有加载ajax数据(html)

时间:2016-09-23 12:34:11

标签: jquery ajax

显示值63后,数据未在数据表中列出..如果删除函数(html),数据将在数据表中列出



$(document).ready(function() {
	
	attachmentTable1 = $('#example').DataTable({
			"ajax": {
							
			    "url": "<%=request.getContextPath()%>/Home?value=getreqs4",
			    success: 
		            function(html){
			    	var linkText = '63';
		                $("#contentcontainer").html(linkText);
		            },
			    "data": function ( json ) {
			     return json;
			    }
			  }
	});
}
&#13;
&#13;
&#13;

0 个答案:

没有答案