日期:2014-05-17 浏览次数:20462 次
function isLog(){
var c=$.cookie("why");
if(c != null)
{
$("#user_name").text(c);
}
}
function isLog(){
var c=$.cookie("why");
if(c != null)
{
alert("1");
$("#user_name").text(c);
alert("2");
}
}
function isLog(){
var c=$.cookie("why");
if(true)
{
$("#user_name").text(c);
}
}