| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html lang="ko"
- xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : ShoplinkerGoodsSendPreviewForm.html
- * @desc : 샵링커 상품전송관리 미리보기 화면
- *============================================================================
- * STYLE24
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021. 12. 20 jmh 최초 작성
- *******************************************************************************
- -->
- <head>
- <title>::샵링커 상품상세 미리보기::</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- </head>
- <body>
- <!-- 엑셀다운버튼 -->
- <div style="text-align: right; margin: 20px;">
- <button type="button" class="" onclick="fnDownloadHtml();">html 파일다운</button>
- </div>
-
- <!-- 컨텐츠 -->
- <th:block th:utext="${goodsInfo.xmlTxt}"></th:block>
-
- <!-- html 파일생성 -->
- <script th:inline="javascript">
- /*<![CDATA[*/
- function fnDownloadHtml() {
- var filename = [[${goodsInfo.goodsCd}]]+".html";
- var text = "<!DOCTYPE html><html><body>"+ [[${goodsInfo.xmlTxt}]] + "</body></html>";
-
- var pom = document.createElement('a');
- pom.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
- pom.setAttribute('download', filename);
-
- if (document.createEvent) {
- var event = document.createEvent('MouseEvents');
- event.initEvent('click', true, true);
- pom.dispatchEvent(event);
- }
- else {
- pom.click();
- }
- }
- /*]]>*/
- </script>
- </body>
- </html>
-
|