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.
我有一个使用 iframe 从电力公司网站加载断电地图的网站。电力公司的站点使用 cookie 来记住用户的状态以显示正确的地图。我想让我自己的站点将此带有地理位置的 cookie 发送到 iframe 中的外部站点,供尚未设置其位置的用户使用。这可能吗?前任。
setcookie("GeographicLocation","%2FGeographic%20Location%2FColorado",$time,"/","www.powercompany.com");
不可以。您不能代表第三方网站设置 cookie,无论您是否将它们嵌入到 iframe 中。如果浏览器允许这样做,那将是一个严重的安全漏洞。