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.
17 lines
332 B
17 lines
332 B
2 months ago
|
/**
|
||
|
* 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";
|
||
|
}
|
||
|
};
|
||
|
|