HTML页面循环遍历数据,不用JSTL标签

javascript动态创建div循环列表

动态循环加载列表,实现vue中v-for的效果

效果图:

HTML页面循环遍历数据,不用JSTL标签_第1张图片

代码:

var noApplicationRecord = document.getElementById('noApplicationRecord')

//模拟数据
var data = [
    { business: '万达影院(万胜广场店)', count: '325', num: '20170012565863565656', time: '2017-10-12 16:30', license: '粤A88888' },
    { business: '麦当劳', count: '111', num: '20170012565863565656', time: '2017-10-12 16:30', license: '粤A99999' },
    { business: '肯德基', count: '456', num: '20170012565863565656', time: '2017-10-12 16:30', license: '粤A45466' }
]
//绘制单个div
function setDiv(item){
    var div = '
' + item.business + '
消费金额: ' + item.count + '元
消费单号: ' + item.num + '
提交时间: ' + item.time + '
' + item.license + '
' return div } //循环加载到页面 function getnoApplicationData(){ var html = '' for(var i = 0;i

 

你可能感兴趣的:(前端)