function is_ie() {
	if(navigator.userAgent.toLowerCase().indexOf("chrome") != -1) return false;
	if(navigator.userAgent.toLowerCase().indexOf("msie") != -1) return true;
	if(navigator.userAgent.toLowerCase().indexOf("windows nt") != -1) return true;
	return false;
}
   
function copy_to_clipboard(str) {
	if( is_ie() ) {
		window.clipboardData.setData("Text", str);
		alert("복사되었습니다.");
		return;
	}
	prompt("Ctrl+C를 눌러 복사하세요.", str);
}

<button onclick="copy_to_clipboard('Hello Jmnote2');">복사</button>

'javascript, jquery' 카테고리의 다른 글

jquery - ajax 파일 업로드  (0) 2015.09.19
href에서 파라메터값 분리하기  (0) 2015.09.17
엔터(enter) 입력시 폼(form) 전송  (0) 2015.09.01
ajax 파일 전송  (0) 2015.08.31
input 한글만, 영어만, 숫자만  (0) 2015.07.23
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,