从app或ios传参获取url赋值打开h5手机端直接视频播放
1.今天爬了很多坑,一直想给video和source 的src动态赋值;其实赋值是赋值上了,但是默认打开浏览器后,就不会再调起video了 ,所以他识别不到新赋值的值,替大家爬了一个小时的坑,给大家瞅瞅;
步骤一 获取安卓手机或ios手机从http传过来的参数;
function urlPara2(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) return r[2]; return null; }; console.log(urlPara2("url")); 注意:url需为是安卓或者ios通过http带过来的参数;
步骤二 动态追加一个video(文件已经写了video动态赋值后不会播放,所以需要动态append)
var sourceDom =
全部代码显示;
<!doctype html>
<title></title>
<style> html,body{ height: 100%; } #wrap { height: 100%; } .mejs-container,.video,.mejs-poster,.mejs-overlay,.mejs-mediaelement,video {height: 100% !important;width:16rem !important;} </style>
需要其他详细代码联系我
微博:艾米的猫儿
趁时光不老,努力活成自己想要的样子 笑看过往
作者:qq_731335498 来源:CSDN 原文:https://blog.csdn.net/qq_731335498/article/details/95342679 版权声明:本文为博主原创文章,转载请附上博文链接!