//이 단계는 매우 중요합니다. 플래시 파일 참조 경로. ZeroClipboard.setMoviePath('http://www.cnblogs.com/Scripts/ZeroClipboard/ZeroClipboard.swf'); //ZeroClipboard 객체 생성 clip = new ZeroClipboard.Client(); >clip.setHandCursor(true); //Loading 이벤트, mouseOver 이벤트에서 복사할 내용을 flahs 파일로 전송하고 저장합니다. clip.addEventListener('mouseOver', function(client) { clip.setText($('#IndInfo').val()); }) //복사 성공 후 대화 상자가 나타납니다. clip.addEventListener('complete' , function(client, text ) { alert("클립보드에 텍스트가 복사되었습니다:nn" text) }) //복사 기능을 구현하는 객체 지정 clip.glue( '복사'); / /다음은 사용된 html 객체입니다. <%= Html.Hidden("IndInfo", ViewData["IndInfoFormat"].SafeString())%> 🎜>
3- 로컬 디버깅인 경우 플래시 기반 보안 메커니즘에는 일부 설정이 필요합니다 http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html 웹 페이지에서 플래시 파일의 실제 경로를 직접 입력하기만 하면 됩니다.