function jsUrlCopy() {
if (g_browser == "IE") {
var doc = document.viewForm.url.createTextRange();
doc.select();
doc.execCommand("Copy");
g_popupLayer(ALERT_COPY, 'alert');
}
else {
var str = document.viewForm.url.value;
prompt("이 글의 고유주소입니다. Ctrl+C를 눌러 복사하세요.", str);
}
return;
}
풀꽃세상에서 스크립트를 보고 일단 위 처럼 prompt 로 처리
풀꽃세상에서 스크립트를 보고 일단 위 처럼 prompt 로 처리
이올린에 북마크하기
이올린에 추천하기


