ホームページ  >  記事  >  ウェブフロントエンド  >  jquery_jqueryを使用してhtml5 localstorageの値を読み取る方法

jquery_jqueryを使用してhtml5 localstorageの値を読み取る方法

WBOY
WBOYオリジナル
2016-05-16 17:44:39936ブラウズ

HTML 5 では、localstorage をサポートするブラウザーでは、ブラウザーを閉じて次回ブラウザーを再度開いた場合でも、値を読み取ることができます。示されている例は、jquery を使用してフォームがロードされるたびに localstorage の値を読み取り、フォームが送信されるたびに値をクリアすることです
最初はフォーム :

コードをコピー コードは次のとおりです。




<br><--レイアウトにブートストラップ CSS を含める --> <br><link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> ; <BR></head> <br><div class="container"> <br><h1><br><フォームmethod= "post" class="form-horizo​​ntal"> <br><fieldset><br><legend><br><div class="control-group"> 🎜> <label class="control-label" for="type">お問い合わせの種類</label> <br><div class="controls"> <br><select name="type" id= "タイプ"> <br><オプション値="">選択してください<br><オプション値="一般"><br><オプション値=" 販売">販売</オプション> <br><オプション値="サポート"</オプション> <br></div> /div> <br><div class="control-label">名前</label> =" コントロール"> <br> <input class="input-xlarge" type="text" name="name" id="name" value="" maxlength="50"> /div> <br></div> <br><div class="control-label" for="email">メールアドレスlabel> <br><div class="controls"> <br><input class="input-xlarge" type="text" name="email" id="email" value="" maxlength=" 150" > <br></div> <br></div> <br><div class="control-group"> <br><label class="control-label" for= "メッセージ ">メッセージ</label> <br><div class="controls"> <br><textarea class="input-xlarge" name="message" id="message"> /textarea> <br></div> <br><div class="controls"> < label class="checkbox"> <br><input name="subscribe" id="checkbox"> <br></label> ></div> <br></fieldset> <br><input type="submit" name= "submit " id="submit" value="Send" class="btn btn-primary"> <br></form> <br> <br>コードの js 部分: <br><br><br><br><br>コードをコピーします <br><br><br> コードは次のとおりです: <br><div class="codebody" id="code60579"> <br><script src="//code.jquery.com/jquery-latest.js"></script> <br><script>$(document).ready( function () { <br>/* <br>* localstorage がサポートされているかどうかを判断します <br>*/ <br>if (localStorage) { <br>/* <br>* localstorage の値を読み出します <br>* / <br>if (localStorage.type) { <br>$("#type").find("option[value=" localStorage.type "]").attr("selected", true); } <br>if (localStorage.name) { <br>$("#name").val(localStorage.name); <br>} <br>if (localStorage.email) { <br>$("# email ").val(localStorage.email); <br>} <br>if (localStorage.message) { <br>$("#message").val(localStorage.message); <br>} <br> if (localStorage.subscribe === "checked") { <br>$("#subscribe").attr("checked", "checked"); <br>} <br>/* <br>* の場合形式 localstorage の値が変更されると、localstorage の値も変更されます <br>*/ <br>$("input[type=text],select,textarea").change(function(){ <br>$this = $(this) ; <br>localStorage[$this.attr("name")] = $this.val(); <br>$("input[type=checkbox]"); change(function() { <br>$this = $(this); <br>localStorage[$this.attr("name")] = $this.attr("checked"); <br>}); 🎜>$(" form") <br>/* <br>* フォームが送信された場合は、clear メソッドを呼び出します <br>*/ <br>.submit(function(){ <br>localStorage.clear() ; <br>}) <br>.change(){ <br>console.log(localStorage); <br>});</div> </div></div><div class="nphpQianMsg"><div class="clear"></div></div><div class="nphpQianSheng"><span>声明:</span><div>この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。</div></div></div><div class="nphpSytBox"><span>前の記事:<a class="dBlack" title="JQuery 入門—簡単な JQuery アプリケーションの作成 Case_jquery" href="http://m.php.cn/ja/faq/18161.html">JQuery 入門—簡単な JQuery アプリケーションの作成 Case_jquery</a></span><span>次の記事:<a class="dBlack" title="JQuery 入門—簡単な JQuery アプリケーションの作成 Case_jquery" href="http://m.php.cn/ja/faq/18163.html">JQuery 入門—簡単な JQuery アプリケーションの作成 Case_jquery</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>関連記事</h2><em><a href="http://m.php.cn/ja/article.html" class="bBlack"><i>続きを見る</i><b></b></a></em><div class="clear"></div></div><ul class="nphpXgwzList"><li><b></b><a href="http://m.php.cn/ja/faq/1609.html" title="Bootstrap リスト グループ コンポーネントの詳細な分析" class="aBlack">Bootstrap リスト グループ コンポーネントの詳細な分析</a><div class="clear"></div></li><li><b></b><a href="http://m.php.cn/ja/faq/1640.html" title="JavaScript関数のカリー化の詳細説明" class="aBlack">JavaScript関数のカリー化の詳細説明</a><div class="clear"></div></li><li><b></b><a href="http://m.php.cn/ja/faq/1949.html" title="JS パスワードの生成と強度検出の完全な例 (デモ ソース コードのダウンロード付き)" class="aBlack">JS パスワードの生成と強度検出の完全な例 (デモ ソース コードのダウンロード付き)</a><div class="clear"></div></li><li><b></b><a href="http://m.php.cn/ja/faq/2248.html" title="Angularjs は WeChat UI (weui) を統合します" class="aBlack">Angularjs は WeChat UI (weui) を統合します</a><div class="clear"></div></li><li><b></b><a href="http://m.php.cn/ja/faq/2351.html" title="JavaScript を使用して繁体字中国語と簡体字中国語をすばやく切り替える方法と、簡体字中国語と繁体字中国語の切り替えをサポートする Web サイトのトリック_javascript スキル" class="aBlack">JavaScript を使用して繁体字中国語と簡体字中国語をすばやく切り替える方法と、簡体字中国語と繁体字中国語の切り替えをサポートする Web サイトのトリック_javascript スキル</a><div class="clear"></div></li></ul></div></div><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!</p></div><div class="footermid"><a href="http://m.php.cn/ja/about/us.html">私たちについて</a><a href="http://m.php.cn/ja/about/disclaimer.html">免責事項</a><a href="http://m.php.cn/ja/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body></html>