일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- wap
- ERD
- VARIABLE
- injection
- sql업데이트
- tempDB
- join
- SPLIT
- 한글입력체크
- xmldom
- VarType
- FileSystemObject
- 이미지세로길이
- jdbc driver
- sql랭킹
- 이미지가로길이
- inner join
- update
- instr
- array
- JavaScript
- 인젝션
- 정규식
- WML
- asp함수
- 자바기초
- sql순위
- XML
- MSSQL보안
- javascript 한글입력체크
- Today
- Total
3초기억력
SNS 내보내기. 공유. 페이스북, 트위터, 밴드, 카카오스토리 SNS 에 글 공유 / 내보내기 본문
제목 : SNS 내보내기. 공유. 페이스북, 트위터, 밴드, 카카오스토리 SNS 에 글 공유 / 내보내기
소스 :
<script type="text/javascript">
<!--
//SNS 등 sharer 처리
function unescapeXml(str){
str = str.replaceAll("&", "&");
str = str.replaceAll("<", "<");
str = str.replaceAll(">", ">");
str = str.replaceAll("'", "'");
str = str.replaceAll(""", "\"");
str = str.replaceAll("'", "'");
return str;
}
function twitter_share(){
var text = "<%=strShareTitle%>";
var url = "<%=strShareURI%>";
var snsUrl = "http://twitter.com/home?status="+encodeURIComponent(text)+" "+ url;
var popup = window.open(snsUrl, "_snsPopupWindow", "width=500, height=500");
popup.focus();
}
function facebook_share(){
var text = "<%=strShareTitle%>";
var url = "<%=strShareURI%>";
var image = "<%=strShareImg%>"
var summary = "<%=strShareSubject%>"
var snsUrl = "http://www.facebook.com/sharer.php?u="+encodeURIComponent(url)+"&t="+encodeURIComponent(text)+"&i="+encodeURIComponent(image);
var popup= window.open(snsUrl, "_snsPopupWindow", "width=500, height=500");
popup.focus();
}
function kakaostory_share(){
var title = "<%=strShareTitle%>";
title = title.substring(0,100);
title = unescapeXml(title);
title = title.replace(/\&(amp;)?/ig, ""); // 카스인경우 & 등록시 글자 짤림
var url = "<%=strShareURI%>";
var snsUrl = "https://story.kakao.com/share?url="+encodeURIComponent(url);
var popup= window.open(snsUrl, "_snsPopupWindow", "width=500, height=500");
popup.focus();
}
function band_share(){
var title = "<%=strShareTitle%>";
var url = "<%=strShareURI%>";
var snsUrl = "http://www.band.us/plugin/share?body="+encodeURIComponent(title)+"&route="+encodeURIComponent(url);
var popup= window.open(snsUrl, "_snsPopupWindow", "width=500, height=500");
popup.focus();
}
//-->
</script>
내용 :
출처 :
'코딩_javascript' 카테고리의 다른 글
HTML TAG 삭제 자바스크립트 (0) | 2016.08.22 |
---|---|
다른 form 의 name, value 를 가져오는 방법 (0) | 2016.04.14 |
WEB - HTML5 Desktop Notifications (0) | 2015.09.10 |
javascript 날짜 추가 기능 (0) | 2015.05.07 |
javascript - confirm 활용 (0) | 2012.12.14 |