body{ cursor: url("https://images.cnblogs.com/cnblogs_com/szqblog/1889956/o_201130135019Cursor.png"), auto; }

函数提升大于变量提升

var a=10;
function a(){}
console.log(typeof a);
||
||
||
\/
function a(){}

var a=10;
console.log(typeof a);  //number
posted @ 2020-12-01 21:20  1234前来报到  阅读(78)  评论(0编辑  收藏  举报