问答详情
源自:9-18 浏览器窗口可视区域大小

为什么我的会显示不出来呢

<!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>


提问者:qq_慕移动6125882 2021-02-08 21:47

个回答

  • weixin_慕容6328546
    2023-02-21 17:13:24

    13行onclick写成了conclick

  • 木兰心
    2021-04-22 22:51:21

    input.conclick="alerte()";这行用下面的代替

    input.onclick=alerte;

    或者这样也行input.setAttribute("onclick","alerte()");

    具体的原因我也不知道orz,不知道怎么解释