Просмотр исходного кода

AS-IS HTML 스타일 미적용되게 처리

eskim 5 лет назад
Родитель
Сommit
e8d9c33621

+ 3 - 0
src/main/webapp/WEB-INF/views/mob/goods/GoodsDealDescFormMob.html

@@ -358,6 +358,9 @@
 			}
 			
 		});
+	   
+	 	//210526_ 추가 : 이미지 style 속성 제거
+		$(".mdhtml_box style").remove();$(".mdhtml_box img").removeAttr("style");
 	});
   
 /*]]>*/

+ 2 - 0
src/main/webapp/WEB-INF/views/mob/goods/GoodsDetailFormMob.html

@@ -2165,6 +2165,8 @@
 	$(document).ready( function() {
 		
 		$('.timer_box').css('display', 'none');
+		//210526_ 추가 : 이미지 style 속성 제거
+		$(".mdhtml_box style").remove();$(".mdhtml_box img").removeAttr("style");
 		
 		var params = new Object();
 		params.goodsCd = [[${params.goodsCd}]];

+ 3 - 0
src/main/webapp/WEB-INF/views/web/goods/GoodsDealDescFormWeb.html

@@ -316,6 +316,9 @@
 			}
 			
 		});
+   //210526_ 추가 : 이미지 style 속성 제거
+	$(".mdhtml_box style").remove();$(".mdhtml_box img").removeAttr("style");
+   	
 	});
 /*]]>*/
 </script>	

+ 3 - 0
src/main/webapp/WEB-INF/views/web/goods/GoodsDetailFormWeb.html

@@ -1807,6 +1807,9 @@
 		
 		$('.timer_box').css('display', 'none');
 		
+		//210526_ 추가 : 이미지 style 속성 제거
+		$(".mdhtml_box style").remove();$(".mdhtml_box img").removeAttr("style");
+		
 		//공유 버튼 토글 
 		$("button[data-name=openShare]").on("click", function(){
 			$(this).toggleClass("on").next(".shareWrap").toggleClass("on");