|
@@ -40,7 +40,7 @@
|
|
|
<!-- 굿즈_리뷰 -->
|
|
<!-- 굿즈_리뷰 -->
|
|
|
<div class="goods_section">
|
|
<div class="goods_section">
|
|
|
<div class="goods_detail">
|
|
<div class="goods_detail">
|
|
|
- <a href="">
|
|
|
|
|
|
|
+ <a th:onclick="cfnGoToGoodsDetail([[${ reviewInfo.goodsCd}]])" >
|
|
|
<div class="thumb_box">
|
|
<div class="thumb_box">
|
|
|
<img th:src="${imageUrl + '/' + reviewInfo.sysImgNm}" alt="tmp_pdClickother1">
|
|
<img th:src="${imageUrl + '/' + reviewInfo.sysImgNm}" alt="tmp_pdClickother1">
|
|
|
</div>
|
|
</div>
|
|
@@ -252,7 +252,7 @@
|
|
|
</th>
|
|
</th>
|
|
|
<td>
|
|
<td>
|
|
|
<div class="textarea_wrap">
|
|
<div class="textarea_wrap">
|
|
|
- <textarea class="doc_review" name="reviewContent" id="reviewContent" cols="30" rows="10"></textarea>
|
|
|
|
|
|
|
+ <textarea class="doc_review" name="reviewContent" id="reviewContent" cols="30" rows="10" maxlength="500"></textarea>
|
|
|
<p class="txt_cnt"><span id="review_cnt" class="c_primary">0</span>/500</p>
|
|
<p class="txt_cnt"><span id="review_cnt" class="c_primary">0</span>/500</p>
|
|
|
</div>
|
|
</div>
|
|
|
</td>
|
|
</td>
|
|
@@ -676,6 +676,18 @@ function handleOnInput(el, maxlength) {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
+<script>
|
|
|
|
|
+ //210524_ 추가 : textarea focus시 outline 색상 넣는 스크립트
|
|
|
|
|
+ $(function() {
|
|
|
|
|
+ $('.doc_review').focus(function(){
|
|
|
|
|
+ $(this).parent('.textarea_wrap').css('outline', '1px auto rgb(229, 151, 0)');
|
|
|
|
|
+ })
|
|
|
|
|
+ $('.doc_review').blur(function(){
|
|
|
|
|
+ $(this).parent('.textarea_wrap').css('outline', 'none');
|
|
|
|
|
+ })
|
|
|
|
|
+ });
|
|
|
|
|
+</script>
|
|
|
|
|
+
|
|
|
</th:block>
|
|
</th:block>
|
|
|
|
|
|
|
|
</body>
|
|
</body>
|