Skip to content

CHICPRO

  • Life Log
  • Cycling Log
  • Photo Log
    • Portrait
    • Landscape
    • Flower
    • Etc
  • Coding Log
  • Information

KCP 결제모듈의 init_pay_button 함수 수정

2013-10-06 by 편리

KCP 결제 모듈 샘플 페이지에 보면 결제 모듈 설치 안내 텍스트를 보여주기 위해 init_pay_button 이란 함수를 사용한다. 그런데 이 함수가 IE이외의 브라우저에서는 제대로 작동을 하나 IE에서는 결제모듈이 설치되어 있지 않아도 안내 메세지를 보여주지 않는다. 원인을 찾아보니 GetPluginObject 라는 함수에서 플러그인 Object를 구하게 되는데 IE에서는 결제 모듈이 설치되더 있지 않더라도 null 값이 되지 않는다. 그래서 아래와 같이 함수를 수정해봤다.

<script>
function init_pay_button()
{
    if(ChkBrowser())
    {
        if(document.Payplus.object == null) {
            document.getElementById("display_setup_message").style.display = "block" ;
            document.getElementById("display_pay_button").style.display = "none" ;
        }
        else {
            document.getElementById("display_setup_message").style.display = "none" ;
            document.getElementById("display_pay_button").style.display = "block" ;
        }
    }
    else
    {
        if( GetPluginObject() == null ) {
            document.getElementById("display_setup_message").style.display = "block" ;
            document.getElementById("display_pay_button").style.display = "none" ;
        }
        else {
            document.getElementById("display_setup_message").style.display = "none" ;
            document.getElementById("display_pay_button").style.display = "block" ;
        }
    }
}
</script>

KCP 결제모듈에서 제공하는 함수를 이용해 브라우저를 체크하고 IE일 때는 Payplus.object의 유무를 판단해서 기능을 수행하도록 했다.

Post navigation

Previous Post:

워드프레스 포스트 이미지 첨부파일 링크에 class 추가하기

Next Post:

KCP ActiveX 결제모듈 삭제 방법

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Recent Posts

  • php 배열 연산에서 + 와 array_merge 의 차이
  • pcntl_fork 를 이용한 다중 프로세스 실행
  • 아이폰 단축어를 이용하여 주중 공휴일엔 알람 울리지 않게 하기
  • 구글 캘린더 전체일정 재동기화
  • OpenLiteSpeed 웹서버에 HTTP 인증 적용
  • OpenLiteSpeed 웹어드민 도메인 연결
  • WireGuard를 이용한 VPN 환경 구축
  • Ubuntu 22.04 서버에 OpenLiteSpeed 웹서버 세팅
  • 맥 vim 세팅
  • 우분투 시스템 터미널쉘 zsh 로 변경

Recent Comments

  • 편리 on 업무관리용 그누보드 게시판 스킨
  • 임종섭 on 업무관리용 그누보드 게시판 스킨
  • 캐논 5D 펌웨어 | Dslr 펌웨어 업그레이드 방법 82 개의 베스트 답변 on 캐논 EOS 30D 펌웨어 Ver 1.0.6 , EOS 5D 펌웨어 Ver 1.1.1
  • Top 5 캐논 5D 펌웨어 Top 89 Best Answers on 캐논 EOS 30D 펌웨어 Ver 1.0.6 , EOS 5D 펌웨어 Ver 1.1.1
  • 편리 on 워드프레스 애니메이션 gif 파일을 mp4로 변환하여 출력하기
  • 임팀장 on 워드프레스 애니메이션 gif 파일을 mp4로 변환하여 출력하기
  • 편리 on Notepad++ NppFTP 플러그인 수동 설치
  • paul-j on Notepad++ NppFTP 플러그인 수동 설치
  • YS on Windows 10 iCloud 사진 저장 폴더 변경
  • 편리 on Docker를 이용한 Centos7 + httpd + php 5.4 개발환경 구축

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
© 2025 CHICPRO | Built using WordPress and SuperbThemes