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

来源:1-1 让你认识JS

燃料

2017-02-14 20:05

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


写回答 关注

2回答

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

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

    燃料

    非常感谢!

    2017-02-15 21:25:12

    共 1 条回复 >

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

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


    打错了~~~~

    燃料

    谢谢啊

    2017-02-15 21:25:32

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题