Trong đầu html:hiển thị sống width và height giá trị về việc thay đổi cửa sổ thay đổi kích thước
<script type="text/javascript">
var myWidth = 0, myHeight = 0;
if(typeof(window.innerWidth) == 'number') {
myWidth = window.innerWidth; myHeight = window.innerHeight;
} else if(document.documentElement && (document.documentElement.clientWidth ||document.documentElement.clientHeight)) {
myWidth = document.documentElement.clientWidth; myHeight = document.documentElement.clientHeight;
} else if(document.body && (document.body.clientWidth || document.body.clientHeight)) {
myWidth = document.body.clientWidth; myHeight = document.body.clientHeight;
}
</script>
Trong nội dung html:
<script type="text/javascript">
document.write('<p>' + myWidth + 'x' + myHeight + '</p>');
</script>
Nó hoạt động tốt. Câu hỏi đặt ra là: làm thế nào tôi có thể có nó để hiển thị các giá trị chiều rộng/chiều cao trong khi thay đổi kích thước trình duyệt? Giống như ở đây http://quirktools.com/screenfly/ ở góc dưới cùng bên trái.
Rất cám ơn!
thực hiện điều này (đối với những người trong một vội vàng!) sự giúp đỡ câu hỏi stackoverflow qua? http://stackoverflow.com/questions/641857/javascript-window-resize-event – user800612
Tôi đã tìm thấy mã ở trên trên web. Tôi hoàn toàn là người mới bắt đầu. Nếu bất cứ ai có thể viết toàn bộ mã (kết thúc với mã của tôi ở trên) mà sẽ là tuyệt vời. cảm ơn. –