gpt4 book ai didi

javascript - iPad 上的 HTML5 视频元素不会触发 onclick 或 touchstart 事件?

转载 作者:可可西里 更新时间:2023-11-01 02:31:39 25 4
gpt4 key购买 nike

我正在尝试将一些事件附加到我的 iPad 网络应用程序中的 HTML5 视频元素,但它们似乎没有触发?我已经在设备和模拟器中对此进行了测试,并获得了相同的结果。但是,这些事件(至少对于 onclick)在桌面 Safari 中运行良好。我也试过将视频元素换成一个 div,事件是否正常?有没有其他人遇到过这个问题并且有解决方法的想法?

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Test video swipe</title>
</head>
<body>

<video src='somevid.mp4' id='currentlyPlaying' width='984' height='628' style='background-color:#000;' controls='controls'></video>

<script>
var theVid = document.getElementById("currentlyPlaying");

theVid.addEventListener('touchstart', function(e){
e.preventDefault();
console.log("touchstart");
}, false);

theVid.addEventListener('click', function(e){
e.preventDefault();
console.log("click");
}, false);

theVid.addEventListener('touchmove', function(e){
console.log("touchmove");
}, false);

theVid.addEventListener('touchend', function(e){
console.log("touchend");
}, false);

theVid.addEventListener('touchcancel', function(e){
console.log("touchcancel");
}, false);



</script>
</body>
</html>

最佳答案

如果您使用 controls 属性,则 iPad 上的视频元素将吞下事件。如果您希望元素响应触摸事件,则必须提供自己的控件。

关于javascript - iPad 上的 HTML5 视频元素不会触发 onclick 或 touchstart 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3803702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com