函式和標籤的使用

2021-08-26 11:43:46 字數 1253 閱讀 1827

例項1:

@echo off

echo the name of the bat file is%0

echo the first vars of the bat file is%1

call:function1

call:function2

call:function2

call:function3

call:function4 robin

goto labelend

echo this should not be seen

:labelend

exit /b 0

:function1

echo:1

exit /b 0

:function2

echo:2

exit /b 0

:function3

echo:3

exit /b 0

:function4

echo:

函式名是%0

echo:the first vars of function is%1

exit /b 0

注意1:exit的使用。

quits the cmd.exe program (command interpreter) or the current batchscript.

exit [/b] [exitcode]

/b specifies to exit the current batch script instead of

cmd.exe. if executed from outside a batch script, it

will quit cmd.exe

exitcode specifies a numeric number. if /b is specified, sets

errorlevel that number. if quitting cmd.exe, sets the process

exit code with that number.

exitcode可以通過系統變數errorlevel取得

注意2:函式和標籤的定義一樣,

只是呼叫方式不一樣。函式用call:+函式名的形式,比如call:function1。

標籤使用goto labelend的形式。函式還有可以

傳遞引數比如:call:function4 robin,而標籤不行。

函式呼叫有

返回值,而標籤沒有。

embed標籤和video的使用

屬性 值 描述 autoplay 屬性 autoplay autoplay controls 屬性 controls controls height 屬性 height pixels loop 屬性 loop loop muted 屬性 muted muted poster 屬性 poster ur...

Thinkphp的 和標籤的使用和異同

thinkphp的in標籤用於某個模板變數是否在某個範圍之內,如果是,則輸出內容,如果不是,就不輸出內容。可用於多使用者許可權分配 語法 要輸出的內容 使用時,在模組操作 如 index index 裡設定變數並賦值給模板 groupid 1 this assign groupid groupid ...

Input 標籤使用和屬性

您的標準文字輸入域 將是這個樣子 為了顯示 鍵盤,使用 對於電子郵件位址,如下 最後,對於乙個簡單的數字鍵盤 類似於 之一,但不帶 和 鍵 type text pattern 0 9 它也可以控制自動正確的使用以下paramater的 autocorrect off 最後,但絕非最不重要的,開啟或關...