我从 W3Schools 获得了以下代码,但我想知道如何在页面重新加载后保持复选框值:
Keep HTML: <input type="checkbox" ng-model="myVar">
<div ng-if="myVar">
<h1>Welcome</h1>
<p>Welcome to my home.</p>
<hr>
</div>
<p>The DIV element will be removed when the checkbox is not checked.</p>
<p>The DIV element will return, if you check the checkbox.</p>
现在,如果您选中该框并重新加载页面,该复选框将再次取消选中。
即使在重新加载后,您如何使复选框保持其值?谢谢!
相关分类