第一种

(function checkCookie(){
    console.log("hello world!!!!!");
}())

第二种

(function checkCookie(){
    console.log("hello world!!!!!");
})()

第三种

!function checkCookie(){
    console.log("hello world!!!!!");
}()

还有两种,通过onload调用

<body onload="checkCookie()"></body>

window.onload=checkCookie;

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
  • 2021-06-11
  • 2021-08-06
  • 2022-12-23
猜你喜欢
  • 2021-12-06
  • 2022-12-23
  • 2021-12-06
  • 2022-12-23
  • 2021-08-19
  • 2021-12-06
相关资源
相似解决方案