JavaScript if, else 조건문 줄여쓰기 (축약형)
페이지 정보
본문
광고 스크립트 적용할때 디바이스 형태를 삽입할때 활용하는 방법입니다
<script type="text/javascript">
var deviceType = /iPad/.test(navigator.userAgent) ? "t" : /Mobile|iP(hone|od)|Android|BlackBerry|IEMobile|Silk/.test(navigator.userAgent) ? "mobile" : "web";
var wptg_tagscript_vars = wptg_tagscript_vars || [];
wptg_tagscript_vars.push(
(function() {
return {
wp_hcuid: "",
ti: "....",
ty: "Home",
device: deviceType
};
}));</script>
<script type="text/javascript">
var deviceType = /iPad/.test(navigator.userAgent) ? "t" : /Mobile|iP(hone|od)|Android|BlackBerry|IEMobile|Silk/.test(navigator.userAgent) ? "mobile" : "web";
var wptg_tagscript_vars = wptg_tagscript_vars || [];
wptg_tagscript_vars.push(
(function() {
return {
wp_hcuid: "",
ti: "....",
ty: "Home",
device: deviceType
};
}));</script>
댓글목록
등록된 댓글이 없습니다.