1.先來個helloworld
alert.('hello world');
完整的:兩種方法,一種通過html呼叫js檔案實現,另一種直接在html中寫
2.關於log輸出,模擬android log。e;ios中nslog.
//2
var word="i'm a log";
var name="趙日天";
console.log(word);
console.log(name,"**********===");
console.log(name,name+word);
console.log(name+word,name);
console.log(name+word);
3.type of方法,判斷資料型別,可以返回6種型別:object。number。string。undefined。sysmbol.function
if(typeof(name)=="string")else
關於CollectionView的一些操作記錄
通過重寫uicollectionviewflowlayout中的layoutattributesforelementsinrect方法可以讓uicollectionview顯示諸如瀑布流 水平流動布局等各種樣式的布局。其原理就是layoutattributesforelementsinrect方法本...
一些基本的as
flash可以通過幀 按扭 影片剪輯來呼叫外部檔案。呼叫的外部檔案包括 外部文字檔案 外部程式檔案 外部 swf檔案 外部檔案 外部 檔案 外部指令碼檔案。一.呼叫外部文字檔案 文字檔案開頭要以flash中的動態文字框的變數名開頭,如 msg 這樣的形式,要和編輯的flash檔案放在同一目錄下 1....
docker的一些實操筆記
2.啟動nginx docker run name nginx p 80 80 d nginx 這樣就簡單的把nginx啟動了,但是我們想要改變配置檔案nginx.conf 進入容器,命令 docker exec it nginx bash nginx.conf配置檔案在 etc nginx 下面,...