JS
PiscesCounty
这个作者很懒,什么都没留下…
展开
-
JS 数组
JS数组知识点Array数组创建数组数组的属性constructorlength数组中的方法1.indexOf(), lastIndexOf2.toString()3.concat()4.join()5.push()6.pop()7.shift()(栈)8.unshift()9.sort([sortby:function(a,b) {}])(稳定排序)10.reverse()11.splice(...原创 2019-02-21 12:25:31 · 204 阅读 · 0 评论 -
HTML5 video循环播放多个视频
最近在开发中遇到的需求是:微信扫描课件二维码,播放其对应的课件视频设计流程扫描二维码时,将其视频列表存入model中,存入第一条是为了,不在html界面重新获取第一条视频 model.addAttribute("playUrl", videos.get(0).getVideoUrl()); model.addAttribute("videoUrls", JsonUtils.toJs...原创 2019-09-12 09:47:25 · 5477 阅读 · 0 评论