본문 바로가기
프로그래밍/css_javascript

execCommand

by 이데렐라 2009. 12. 29.
반응형


[bVal=]object.execCommand(sCommand[,bUserInterface][,vValue])
현재의 문서, 현재의 선택 혹은 주어진 범위에서 명령을 수행.


document.execCommand('ForeColor','false','#FF0033');

document.execCommand('SaveAs',true,'file.html');


bVal : 성공 여부에 따라 결과 값 반환
sCommand : 필수적 요소, 수행 명령 지정 문자열, 스크립트로 수행될 수 있는 command 중 하나
bUserInterface : 선택적 요소, 사용자 인터베이스 디스플레이 여부에 따른 값
vValue : 선택적 요소, 지정되는 문자열, 수치 or 다른 값

반응형

댓글