| confirm() | ใช้ในการสร้าง question box |
|---|
method:confirm ( string );
return type:boolean
content:ใช้ในการสร้าง question box ( มีปุ่ม ok กับ cancel ) โดยถ้ากดปุ่ม ok จะคืนค่า true กลับมา แต่ถ้ากดปุ่ม cancel จะคืนค่า false กลับมา
example:if ( window.confirm ( "Are you sure ?" ) ) { window.alert ( "you confirm" ); }