ホームページ >ウェブフロントエンド >htmlチュートリアル >UI の accordion_html/css_WEB-ITnose について
Cookie を作成します
$(window).bind('unload', function(){ //ページのアンロード時にクリーンアップして永続化します
$('.'+config["headerclass"]).unbind()
varexpandedindices=[]
$('.'+config["contentclass"]+":visible) ").each(function (index){ //展開されたヘッダーのインデックスを取得
expandedindices.push($(this).attr('contentindex'))
})
if (config.persiststate==true && $(' .'+config[" headerclass"]).length>0){ //状態を保持しますか?
expandedindices=(expandedindices.length==0)? '-1c' :expandedindices //内容が展開されていないことを示します ' -1c' 値?
ddaccordion.setCookie(config.headerclass,expandedindices)
}
})
アンロード時のみパネルが閉じられるのはダメです
ddaccordion.setCookie(config.headerclass,expandedindices)
Cookieを書きます
$ (window).bind('unload', function(){ //ページのアンロード時にクリーンアップして永続化します
$('.'+config["headerclass"]).unbind()
var Expandedindices=[]
$( '.'+config["contentclass"]+":visible").each(function(index){ //展開されたヘッダーのインデックスを取得します
Expandedindices.push($(this).attr('contentindex') )
} )
if (config.persiststate==true && $('.'+config["headerclass"]).length>0){ //expandedindices=(expandedindices.length==0)? '-1c ' : Expandedindices //内容は展開されていません。ダミーの '-1c' 値でそれを示しますか?
ddaccordion.setCookie(config.headerclass, Expandedindices)
}
})
これはアンロード時にのみ記録されます。パネルは閉じています
ddaccordion.setCookie(config.headerclass, Expandedindices)
ありがとうございます。つまり、Cookie を設定して読み取ることで実現されますか?そうです
ddaccordion.setCookie(config.headerclass, Expandedindices)
このメソッドは Cookie パッケージを記述することです
ページがロードされるとき、getCookie もあります
ddaccordion.setCookie(config.headerclass, Expandedindices)
このメソッドは、Cookie パッケージを記述することです
ページをロードするときに、getCookie もあります
ありがとうございます! !