이호영 이호영 01-16
결제 모바일 인코딩 수정
@8f0f16ccaa7a7f46408b0b67e5c725bd0d2df04f
src/main/webapp/WEB-INF/jsp/web/cop/nicepay/payRequestMber.jsp
--- src/main/webapp/WEB-INF/jsp/web/cop/nicepay/payRequestMber.jsp
+++ src/main/webapp/WEB-INF/jsp/web/cop/nicepay/payRequestMber.jsp
@@ -39,7 +39,8 @@
 <html>
 <head>
 <title>NICEPAY PAY REQUEST</title>
-<meta charset="euc-kr">
+<!-- <meta charset="euc-kr"> -->
+<meta charset="UTF-8">
 <style>
 	html,body {height: 100%;}
 	form {overflow: hidden;}
@@ -58,8 +59,12 @@
 function nicepayStart(){
 	if(checkPlatform(window.navigator.userAgent) == "mobile"){//모바일 결제창 진입
 		document.payForm.action = "https://web.nicepay.co.kr/v3/v3Payment.jsp";
+		document.payForm.acceptCharset = "EUC-KR";
+		document.payForm.CharSet.value = "euc-kr";
 		document.payForm.submit();
 	}else{//PC 결제창 진입
+		document.payForm.acceptCharset = "UTF-8";
+		document.payForm.CharSet.value = "utf-8";
 		goPay(document.payForm);
 	}
 }
Add a comment
List