728x90
HTML을 공통 적으로 사용하지만 특정 페이지에서만 커스텀하고 싶을 때, 정규식을 사용하여 해당 url을 파악후 작업한다.
특정 url : /article/best-review/12/166
(function(){
m = location.href.match(/article[\/][^\/]*[\/](\d+)[\/](\d+)[\/]/),brand_no=m?decodeURIComponent(m[1].replace(/\+/g, " ")):'';
if(brand_no == '12') {
n = location.href.match(/article[\/][^\/]*[\/](\d+)[\/](\d+)[\/]/),no=n?decodeURIComponent(n[2].replace(/\+/g, " ")):'';
if(no == '166') {
document.write("<div class='crema-reviews' data-widget-id='32' style='width: 1200px; margin: 30px auto 0;'></div>");
}
}
})();
'DEVELOP' 카테고리의 다른 글
[javascript] ES6 문법 ie에서 사용하기 (0) | 2022.01.05 |
---|---|
[publishing] 단위 em, rem에 대하여 2탄 (0) | 2021.12.10 |
[git] Command Line에 작업 반영 명령 (0) | 2021.10.27 |
[plugin] swiper 중복 사용 (0) | 2021.09.08 |
[javascript] var, let, const, 호이스팅, 스코프에 관하여 (0) | 2021.09.02 |