gpt4 book ai didi

javascript - 如何防止按钮在刷新时进入原始状态

转载 作者:行者123 更新时间:2023-11-28 18:47:33 25 4
gpt4 key购买 nike

我有一个按钮#first,单击后将替换为#second。获得第二个按钮后,如果刷新页面,我将返回第一个按钮。如果我希望我的按钮即使在刷新后也成为第二个按钮,我怎样才能实现这一点?提前致谢

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("button").click(function() {
$("#first").replaceWith('<button id="second">Second Button</button>');
});
});
</script>
</head>
<body>
<button id="first">firstbutton</button>
</body>
</html>

最佳答案

设置一个 cookie 来保存按钮的状态,并在 document.ready 上获取保存的状态并按原样显示。

关于javascript - 如何防止按钮在刷新时进入原始状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35058939/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com