페이지를 만들 때 사용자가 팝업창의 해상도와 위치를 다르게 요구하는 경우 먼저 화면 너비를 구한 다음 변수에 값을 지불하고 onclick에서 매개변수를 설정해야 하는지 궁금합니다
<script>alert(screen.width " *" screen.height) <br> </script>
코드 복사 코드는 다음과 같습니다. 다음은 다음과 같습니다. < ;script>
function centerWindow(url,w,h){
l=(screen.width-w)/2
t=(screen. height-h)/2
window.open (url,'','left=' l ',top=' t ',width=' w ',height=' h)
}
< ;/script>
<입력 유형= 버튼 onclick="centerWindow('about:blank',200,200)"> ----------- --------
-------- ---------------
code