jquery从后台获取数据,动态遍历渲染页面

 var $viewVideoId = $('#viewVideoId');
        $viewVideoId.children().remove();
        var fileList = '';
        var UTILE = new UtileObj();
        $.each(JSON.parse(res.data).file, function (i, items) {
            if (i < 10) {
                var time = UTILE.formatTime(parseInt(items.starttime), 'mm:ss');
                var duration = items.endtime - items.starttime;
                var minutes = parseInt(duration / 60);
                var minute = minutes >= 10 ? minutes : '0' + minutes;
                var second = duration % 60 >= 10 ? duration % 60 : '0' + duration % 60;
                var str = items.name,index = str .lastIndexOf(".");
                str  = str .substring(0,index);
                console.log(str );
                fileList += '
  • ' + minute + ':' + second + '
    ' + time + '
  • ';
                }
            });
            $viewVideoId.html(fileList);

    你可能感兴趣的:(Javascript)