You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
332 B
16 lines
332 B
/**
|
|
* Created by Administrator on 2016/11/23.
|
|
*/
|
|
|
|
window.onload=function(){
|
|
console.log(1)
|
|
var c=document.cookie;
|
|
console.log(c)
|
|
if(c.length > 30){
|
|
var d = document.getElementById("authority");
|
|
//console.log(d)
|
|
// $("li").css("display","none");
|
|
// d.style.display = "none";
|
|
}
|
|
};
|
|
|
|
|