为什么我的会显示不出来呢
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <script type="text/javascript"> var height=window.innerHeight; var width=window.innerWidth; var input=document.createElement("input"); input.type="button"; input.value="你好"; input.conclick="alerte()"; document.body.appendChild(input); function alerte(){ alert(height+"和"+width); } </script> </body> </html>