视频观看次数计数器
我需要制作一个视频观看计数器。我有使用嵌入/对象标签的 .MOV 文件,应用程序是 ASP.NET。有什么方法可以使用 Jquery 计算视频的点击量吗?
I need to make a video viewed counter. I have .MOV files using embeded/Object tags and application is ASP.NET. Is there any way that I can count hits on the videos using Jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能将 javascript 事件处理程序附加到仅包含视频的 div 吗?单击该区域时,计数器会增加 1,并且每个页面生命周期只允许触发该函数一次。我预计当您触发该函数时,您将需要发出 AJAX 请求来将数据库或其他内容更新 1,然后使用 dom 删除旧计数器,追加新值。
Cant you attach a javascript event handler to the div that only contains the video. When that area is clicked on increase a counter by 1 and only allow that function to be triggered once per page lifecycle. I expect when you trigger the function you will need to make an AJAX request to update a database or something by 1 and then remove the old counter using the dom, append the new value.