bootStrap table+ajax加载数据

//ajax加载notice
	$(function() {
		//${pageContext.request.contextPath}/
		url = "getHomeNotice.action";
		$.ajax({
			url : url,
			type : "post",
			dateType : "text",
			success : function(res) {
				loadNotice(res); //加载notice					
			}
		});
	});

	//加载notice
	function loadNotice(res) {
		var tBody = $("#noticeTable").find("tbody");
		for ( var index in res) {
			//新建一行
			var newTr = $("");
			//新建节点
			var newsTd = $("");
			var dateTd = $("");
			//新建超链接
			var newsA = $("");

			//添加内容和时间
			var noticeTitle = res[index].noticeTitle;
			var noticeDate = res[index].noticeDate;
			/* alert(noticeTitle);
			alert(noticeDate); */
			newsA.text(noticeTitle);
			dateTd.text(noticeDate);

			//添加数据td-tr-tbody
			newsTd.append(newsA);
			newTr.append(newsTd);
			newTr.append(dateTd);
			tBody.append(newTr);
		}
	}
html

活动标题 发布时间


 
  
 
 

你可能感兴趣的:(学习笔记)