如何發送一個使用JavaScript動態創建的HTML表格到另一個頁面(servlet,jsp等)?如何將一個使用JavaScript動態創建的HTML表發送到另一個頁面(servlet,jsp等)?
我的代碼:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Insert title here</title>
<script type="text/javascript">
function createTable(numberOfRows) {
for (var i = 1; i < numberOfRows; i++) {
var tr = document.createElement("tr");
var tableData = ['hello','world','hi','bye'];
for (var j = 0; j < tableData.length; j++) {
var td = document.createElement("td");
var data = document.createTextNode(tableData[j]);
td.appendChild(data);
tr.appendChild(td);
}
document.getElementById("table1").appendChild(tr);
}
}
function sendTableToAnotherPage(){
// **what should be the code here,to fetch the table created using above function
//and send it to servlet or jsp page via AJAX.**
}
</script>
</head>
<body>
<table id="table1">
</table>
<button type="button" onclick="createTable(5)">Create Table</button>
<input type="button" value="Save" onclick="sendTableToAnotherPage()">
</body>
</html>
我從我的servlet/JSP頁面獲取表格數據所面臨的困難。 任何幫助,將不勝感激。
你可以包含這個表頁而不是發送?使用@include –
發送表格數據爲JSON而不是 – mplungjan
@susheel我,沒有得到你。 –