ios - 关闭应用程序后,Safari IOS 不会保留使用 JavaScript 设置的 Cookie
<p><div>
<aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
<div class="d-flex fd-column fw-nowrap">
<div class="d-flex fw-nowrap">
<div class="flex--item wmn0 fl1 lh-lg">
<div class="flex--item fl1 lh-lg">
<b>已结束。</b>此问题不符合 <a href="https://stackoverflow.com/help/closed-questions" rel="noreferrer noopener nofollow">Stack Overflow guidelines</a> .它目前不接受答案。
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>根据<a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie" rel="noreferrer noopener nofollow">documentation</a>添加 cookie 时,您需要指定 <code>max-age</code> 或 <code>expires</code> 参数选项。如果既没有指定 expires 也没有指定 max-age ,它将在 session 结束时过期(当您退出浏览器时)。</p>
<pre><code>document.cookie = "temporary=hello";
document.cookie = "permanent=world;max-age=31536000"; // 60*60*24*365, for a year
</code></pre></p>
<p style="font-size: 20px;">关于ios - 关闭应用程序后,Safari IOS 不会保留使用 JavaScript 设置的 Cookie,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/50534669/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/50534669/
</a>
</p>
页:
[1]