// 從服務器端獲取到的Map集合
var studentMap = {
"小明": 12,
"小紅": 13,
"小剛": 11
};
// 創建一個表格
var table = document.createElement("table");
// 遍歷Map集合
for (var name in studentMap) {
// 創建一行
var row = document.createElement("tr");
// 創建姓名單元格
var nameCell = document.createElement("td");
nameCell.innerHTML = name;
// 創建年齡單元格
var ageCell = document.createElement("td");
ageCell.innerHTML = studentMap[name];
// 將單元格添加到行中
row.appendChild(nameCell);
row.appendChild(ageCell);
// 將行添加到表格中
table.appendChild(row);
}
// 將表格添加到頁面中的某個容器中
document.getElementById("container").appendChild(table);
// 從服務器端獲取到的Map集合
var productMap = {
"蘋果": 5.0,
"香蕉": 3.0,
"草莓": 8.0
};
// 將Map轉化為JSON字符串
var jsonString = JSON.stringify(productMap);
// 計算商品的總價格
var total = 0;
for (var key in productMap) {
total += productMap[key];
}
// 在頁面上展示商品的總價格
document.getElementById("total").innerHTML = "總價格:" + total.toFixed(2) + "元";