おそらく、その設定をCookieまたはサーバー自体に保存する必要があります。良い読み物は別のSOスレッドで見つけることができます。
クッキーを保存するために基本的に、あなたがしなければならないことはあなたのコードの周りにjavascriptを実装することです。簡単にするために、jQueryとjQuerycookieプラグインを使用します。
// jQuery pulled from Google CDN
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
// jQuery cookie plugin. You will have to download it on your own: https://github.com/carhartl/jquery-cookie
<script src="/path/to/jquery.cookie.js"></script>
// jQuery action here
<script>
function runOnLoad(){
if($.cookie('alert-box') == null) {
$.cookie('alert-box', 'open', { expires: 7 });
} else if($.cookie('alert-box') == 'close') {
$(".close").hide();
}
// php psuedo code here (if you are using the server option)
<?php
if(check database for hide option == true){
echo '$(".close").hide();
}
?>
}
function hideMe(){
$.cookie('alert-box', 'close', {expires:7 });
$(".close").hide();
}
</script>
<body onload="runOnLoad()">
<div class="alert-message success" data-alert="alert">
<a class="close" data-dismiss="alert" href="hideMe.php" onclick="hideMe()" >×</a>When I click × I'd like this to never appear again.
</div>
</body>
サーバーオプションを使用している場合は、hideMe.phpを次のようにコーディングする必要があります。
- データベース内のテーブルの非表示オプションを設定します。つまり、userPreferenceをtrueに設定します。
- ユーザーを、表示しているページにリダイレクトします。
免責事項:これらのコードは、それがどのように行われるかについてのアイデアを提供するためのものです。ただし、コードをテストしなかったため、そのまま動作するという保証はありません。
ノート:
- jQueryのhideを利用しました。それを読んでください。
- jQuery cookieプラグインの詳細については、こちらをご覧ください。