Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
477 views
in Technique[技术] by (71.8m points)

javascript - 保存在本地存储后附加的复选框状态(Save on localstorage appended checkbox state)

I have this function:(我有这个功能:)

function test() { var a = document.getElementById('test'); var b = document.createElement('input'); b.type = 'checkbox'; b.addEventListener( 'change', function() { if(this.checked) { //do something and save the state (checked) } else { //do something else and save the state(not checked) } } and I want to save the state of the checkbox on localstorage from the appended checkbox, what is the best way to do it?(我想从附加的复选框中将复选框的状态保存在localstorage上,最好的方法是什么?)   ask by Gabriel translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use :(您可以使用 :)

Setting storage :(设置存储:) localStorage.setItem('checkbox', b.checked); Getting storage :(获取存储空间:) var checkVal=localStorage.getItem('checkbox');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...