묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
{getUrl()} 질문 입니다..
2014.05.28 02:22
<script>
function copyLink(content) {
var IE = (document.all) ? true : false;
var URL = content;
if (IE) {
window.clipboardData.setData('Text', URL);
alert('복사되었습니다. Ctrl+V로 붙여 넣기 하세요.');
} else {
temp = prompt("Ctrl+C를 눌러 복사하세요", URL );
}
}
var iframetext = '{getUrl('act', 'dispDocumentView')';
</script>
<input type="button" onclick="copyLink(iframetext);" value="COPY URL">
이렇게 했는데 복사된 주소를보니 amp; <= 요게 붙어 있네요... 요거 삭제 방법좀 ^^;;; 알려주세요..
http://domain.com/index.php?mid=viewpop&document_srl=000000&act=dispDocumentView
ps...
html 에 {getUrl('act', 'dispDocumentView') 라고 뿌리면 정상적으로 출력 됩니다 ^^;;
댓글 5
-
XE힘들당휴
2014.05.28 03:30
-
제임스라
2014.05.28 05:25
감사합니다`~~ ^_^ ~~~
-
이즈야
2014.05.28 04:04
<script>function copyLink(content) {var IE = (document.all) ? true : false;var URL = content;if (IE) {window.clipboardData.setData('Text', URL);alert('복사되었습니다. Ctrl+V로 붙여 넣기 하세요.');} else {temp = prompt("Ctrl+C를 눌러 복사하세요", URL );}}var iframetext = "{getNotEncodedUrl('act', 'dispDocumentView')}";</script> -
제임스라
2014.05.28 05:25
감사합니다~~ ^_^~~~
-
애니즌
2014.05.30 01:08
오 짱짱: ) !! 저도 덕분에 해결하고 갑니다 :)
<script>
function copyLink(content) {
var IE = (document.all) ? true : false;
var URL = content;
if (IE) {
window.clipboardData.setData('Text', URL);
alert('복사되었습니다. Ctrl+V로 붙여 넣기 하세요.');
} else {
temp = prompt("Ctrl+C를 눌러 복사하세요", URL );
}
}
{@
$url_row= getUrl('act', 'dispDocumentView');
$url = str_replace('amp;','',$url_row);
}
var iframetext = '{$url}';
</script>