为什么我只能显示出mask 其他都没有
$(function(){
var res=document.cookie.substring(5);
alert(res);
if(res!="www.open.com.cn"){
alert(res);
$('#mask,#serchTip,#searchTip div:eq(0)').show();
$('#searchTip div a').click(function(){
var current=$(this).parent();
current.hide();
current.next().show();
})
$('#searchTip div span,#searchTip div a:last').click(function(){
$('#mask,#searchTip').hide();
})
var oDate=new Date();
oDate.setDate(oDate.getDate()+30);
document.cookie="name=www.open.com.cn;expires="+oDate;
}
})