1. 程式人生 > >javascript中的立即執行函數

javascript中的立即執行函數

read 立即執行 ava () fun color ram asc size

javascript中的立即執行函數
$(function(){
  alert();
}())

Highcharts的中的 series:[{

  name: ‘今日在線人數‘,
  color: ‘pink‘,
  data: (function(){

  
  )())
}]

#執行效果一樣
$( document ).ready(function() { console.log( "ready!" ); });

$(function() { console.log( "ready!" ); });

  

javascript中的立即執行函數