我想知道如何执行以下操作。- 我的网站上有一个 Vimeo 视频,这是我网站的介绍视频。- 我希望视频仅向用户显示一次,或者如果不可能,则每 5 到 10 次加载页面。
我怎样才能做到这一点?我是 JS 的新手。欢迎任何提示!
我找到了这个脚本,我将如何操作/使用它来做到这一点?
https://github.com/carhartl/jquery-cookie
谢谢!
我想知道如何执行以下操作。- 我的网站上有一个 Vimeo 视频,这是我网站的介绍视频。- 我希望视频仅向用户显示一次,或者如果不可能,则每 5 到 10 次加载页面。
我怎样才能做到这一点?我是 JS 的新手。欢迎任何提示!
我找到了这个脚本,我将如何操作/使用它来做到这一点?
https://github.com/carhartl/jquery-cookie
谢谢!
您找到的 jQuery cookie 插件可以做到这一点。
此代码将帮助您入门。我不知道你想如何加载视频,但这会让你开始。
$(document).ready(function() {
var video_cookie = $.cookie('have_seen_video'); // read the cookie
if (video_cookie == null) {
// user has not seen the video
// TODO: show the video
// save a cookie to indicate this user has seen the video
$.cookie('have_seen_video', true);
} else {
// user has seen video, don't show it again.
}
});