사업자정보확인

script

<script>
//href : 주소
//w : 가로 길이
//h : 세로 길이
//xPos , yPos : 화면의 중앙에 위치시키기 위해 존재 (듀얼모니터용..) 
function businessInfo(href, w, h){  
let xPos =(document.body.offsetWidth/2) - (w/2);
xPos = xPos+window.screenLeft
const yPos = (document.body.offsetHeight/2) - (h/2);
window.open(href, "businessInfo", "width="+w+", height="+h+", left="+xPos+", top="+yPos+", menubar=yes, status=yes, titlebar=yes, resizable=yes");}
</script>

html

<button onclick="businessInfo('url',800,800)">정보</button>

css

button{
position: absolute;
bottom: 0;
right: 0;
width: 70px;
height: 20px;
}

좋은 웹페이지 즐겨찾기