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.
我正在使用由<ul>&<li>标签组成的菜单选项卡。我在点击时设置了一种特定的颜色,但是一旦页面刷新,链接颜色就会变为默认颜色。我想保持链接颜色与页面刷新前一样。
<ul>
<li>
尝试在会话中放置一些标志。然后通过从会话中获取来应用颜色。刷新页面时,您可以从会话中获取值
或者您可以使用本地存储
使用localStorage存储颜色。以便您以后检索。
// 将数据保存到当前会话的存储区
sessionStorage.setItem("color", "red");