MediaElement.js jquery 错误
我有一个 gwt 应用程序,我使用 MediaElement.js 来显示多媒体内容。如果我在主页上放置此脚本
<script> // using jQuery
$('video,audio').mediaelementplayer();
</script>
以在 MediaElement.js 中进行转换和标记,但它不起作用。
- 首先,因为此脚本仅转换一个标签或在 MediaElement.js 中
- 其次,此标签必须位于脚本之前。如果是之后就不行了。
所以我的问题是我有多个标签,并且这些标签是在运行时创建的,因此它们将位于脚本之后。我认为脚本的正确工作应该是: 转换页面内的所有 和 标签,而不是脚本之前的唯一标签。
谢谢
I have an gwt application and I use MediaElement.js to show multimedia contents. If I put on the main page this script
<script> // using jQuery
$('video,audio').mediaelementplayer();
</script>
to convert and tags in MediaElement.js and it doesn't work.
- First because this script convert only one tag or in MediaElement.js
- Second this tag must be before the script. If it is after it doesn't work.
So my problem is that I have more than one tag and this tags are created runtime so they will be after the script. I think that the correct work of the script should be:
Convert all and tags within the page and not the only one before the script.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您无法将脚本移动到标签之后,那么您应该执行
或
If you can't move the script until after the tags, then you should either do
or