사업자정보확인
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;
}
Author And Source
이 문제에 관하여(사업자정보확인), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hongihongi60/info저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)