묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
클립보드 복사... 재 질문입니다...
2003.10.23 11:14
아래는 원 소스입니다.
여기에 밑에 소스를 적용하고 싶거든요...ㅠㅠ
// 내용 복사
function selectall(s){
var doc = document.body.createTextRange();
doc.moveToElementText(document.all(s));
doc.select();
doc.execCommand('copy');
alert('클립보드에 저장되었습니다.');
}
여기에 아무런 내용이 없을 경우 에러 메시지를 띄우고 싶습니다.
초보라 힘드네요...^^;
위 소스를 기준으로 아래 소스를 넣구 싶거든요.
if(document.previewform.exsrc.value.length>0)
{
document.previewform.exsrc.focus();
document.previewform.exsrc.select();
}
else alert('위 박스에 복사할 아무런 내용이 없습니다.')
여기에 밑에 소스를 적용하고 싶거든요...ㅠㅠ
// 내용 복사
function selectall(s){
var doc = document.body.createTextRange();
doc.moveToElementText(document.all(s));
doc.select();
doc.execCommand('copy');
alert('클립보드에 저장되었습니다.');
}
여기에 아무런 내용이 없을 경우 에러 메시지를 띄우고 싶습니다.
초보라 힘드네요...^^;
위 소스를 기준으로 아래 소스를 넣구 싶거든요.
if(document.previewform.exsrc.value.length>0)
{
document.previewform.exsrc.focus();
document.previewform.exsrc.select();
}
else alert('위 박스에 복사할 아무런 내용이 없습니다.')
{
if(document.previewform.exsrc.value.length>0)
{
var doc = document.body.createTextRange();
doc.moveToElementText(document.all(s));
doc.select();
doc.execCommand('copy');
alert('클립보드에 저장되었습니다.');
}
else{
alert('위 박스에 복사할 아무런 내용이 없습니다.')
}