Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何创建一个有两个选择“接受”和“拒绝”的确认框,其中接受继续到我的网站并拒绝将用户引导到他们的最后一个网页?我还希望选择不确认再显示 30 天(如果可能)。
它可以用javascript完成:
var confirmation = confirm('Do you want to continue on this website?'); if (!confirmation){ // Redirect the user to his last webpage: history.go(-1); }
关于 30 天部分,您可以使用 cookie 来完成(也可以使用 JavaScript 来完成)。