やりたいこと:
注:私はjQuery 1.4.2と jQuery cookie plugin を使用しています。
誰か私がこれを行う方法について何か提案はありますか?
if($.cookie('query') === null) {
$.cookie('query', '1', {expires:7, path:'/'});
}
あるいは、これのためのラッパー関数を書くことができます:
jQuery.lazyCookie = function() {
if(jQuery.cookie(arguments[0]) !== null) return;
jQuery.cookie.apply(this, arguments);
};
次に、これをクライアントコードに記述するだけです。
$.lazyCookie('query', '1', {expires:7, path:'/'});
この??
$.cookie('query', '1'); //sets to 1...
$.cookie('query', null); // delete it...
$.cookie('query'); //gets the value....
if ($.cookie('query') == null){ //Check to see if a cookie with name of "query" exists
$.cookie('query', '1'); //If not create a cookie "query" with a value of 1.
} // If so nothing.
これ以上何が欲しいですか?
ジェイコブスの答えに似ていますが、私は未定義をテストすることを好みます。
if($.cookie('query') == undefined){
$.cookie('query', 1, { expires: 1 });
}