with(object)
statement
這條語句將
object插入
到作用域鏈頭部,然後執行
statement,
最後把作用域鏈恢復到原始狀態。(
不建議使用,移植性不好,效率低等特點)
語句語法
用途break
break [label]
case
case expression
contine
continue [lable]
debugger
debugger
default
default;
do/while
do statement while(expression)
empty ;
for
for(init,test,incr)
for/in
for(var in object)
function
fucntion name(param,….)
if/else
if(expr)statement1 else statement2
label
label:statement
return
return [expression]
switch
switch(expression)
throw
throw expression
try
try[catch][finally]
use stric
「use strict」
var
var name=[=expr][,…..]
while
while (expression) statement
with
with(object) statement
JS學習筆記 流程控制語句
if else if 條件 else 示例 if exp1 exp3 當exp1為真,執行exp2,exp3始終執行。if exp1 else 當exp1為真,執行exp2,否則執行exp3 if exp1 else if exp3 else 多條件分支 switch caseswitch 變數 變...
JS筆記1 3 語句
1.prompt prompt 可以彈出乙個提示框,該提示框中有乙個文字框,使用者可以在文字框中輸入一段內容。prompt的返回值都是string型別。注 非數值型字串,轉換為數值型後其型別是nan。var a abc a number a console.log isnan a 輸出是true 練...
js學習筆記3 with語句的使用
with是ecmascript規定的內容,主要用於設定 在特定物件中的作用域。var smessage hello with smessage 等同於 alert smessage.touppercase with語句可以在不造成效能損失的情況下,減少變數的長度 with math 上面 指定mat...