有没有办法在带有 XHTML Mobile Profile 的 HTML 页面中使用视频标签显示视频?
我有一个带有以下 DTD 声明的 html。
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
I want to use video inside this page. Is there any workaround? I cannot change DOCTYPE
.I have an html with following DTD declaration.
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
I want to use video inside this page. Is there any workaround? I cannot change DOCTYPE
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,该 DTD 肯定包含嵌入式对象模块,因此您应该能够包含
在该 DTD 下肯定有效。
Well, that DTD definitely includes the Embedded Object Module so you should be able to include an
<object>
tag. I can't promise you that it will work in your environment (especially given the limited processing environment of a mobile device) but something like:is certainly valid under that DTD.