问答详情
源自:1-1 让你认识JS

左键单击按钮没有任何反应,请问哪位可以替小弟解答下,多谢

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>我们互动下</title>

<script type="text/javascript">

    function a(){

        document.write("lalalalala~~");

        var b=confirm("come on");

        if(b==true){

            alert("biubiubiu~");

        }

    }

</script>

</head>

<body>

    <form>

        <input name="button" type="button" onclik="a()" value="To be the better man"/>

    </form>

</body>

</html>


提问者:燃料 2017-02-14 20:05

个回答

  • 慕粉1356576729
    2017-02-14 20:35:42
    已采纳

      <input name="button" type="button" onclik="a()" value="To be the better man"/> 这一行里的onclick写错了,少写了c。

  • 慕粉0017343883
    2017-02-14 20:36:21

    <input name="button" type="button" onclik="a()" value="To be the better man"/>


    打错了~~~~