0
SetCookie()和GetCookie()都很好。在JS Cookie中創建條件
問題:
化妝條件IF cookie值不等於零時,BOX的表演繼續否則隱藏。
我已經運行波紋管代碼但條件不成立。
$(document).ready(function(){
var first_name = getCookie("chat_name");
var user_id = getCookie("chat_id");
var img_src = getCookie("chat_img");
if(first_name !=="" && user_id !=="" && img_src !=="")
// if(document.cookie.length > 0)
{
$("#chat_output").show();
$("#hidebox").show();
$("#chat_store").show();
$("#chat_box").show();
}
});
對於刪除Cookie,我用波紋管code.its做工不錯
document.cookie ="chat_id=''";
document.cookie ="chat_name=''";
document.cookie ="chat_img=''";
您能否提供我怎麼能解決這個問題。
謝謝
其不工作 – Ravi