我使用html和css创建了一个网页,我想在页面加载后自动在后台启动一个音频文件。因此,我在代码中使用了Dim Brand_CodePF As pivotField
Set Brand_CodePF = BrandSellingSTItem_SalesWS.PivotTables("Brand SellingState Item Pivot sales").PivotFields("BrandCode")
With Brand_CodePF
.ClearAllFilters
.CurrentPage = dataBrand
End With
Dim Selling_StatePF As pivotField
Set Selling_StatePF = BrandSellingSTItem_SalesWS.PivotTables("Brand SellingState Item Pivot sales").PivotFields("SellingSTCode")
With Selling_StatePF
.ClearAllFilters
**.CurrentPage = GLSellingState_**
On Error Resume Next
End With
标记。
现在,当我在桌面上打开页面时,这非常正常,但是当我通过移动设备的浏览器打开同一页面时,音频不会自动启动。它需要手动选项。
有人能为我提供解决方案吗?
答案 0 :(得分:2)
大多数移动浏览器都不支持音频自动播放,以代表用户节省移动带宽!之前已经讨论过类似的问题,但我有一些事情可以帮助你分享。
Chrome does not allow applications to play HTML5 audio
在googlling一点点之后我发现了一篇关于codeproject的文章,这对你的案例非常有帮助。这是链接。Fix autoplay issue in mobile browser
我希望它能帮助你摆脱困境,谢谢。