问答详情
源自:1-2 新朋友你在哪里(如何插入JS)

为什么在Dreamweaver中使用JS来定义函数时会提示说有语法错误的?无法实现代码。

<title>无标题文档</title>

<script type="text/javascrip>

function check(){

    var un = document.getElementById("text1");

    var pw1 = document.getElementById("password1");

    var pw2 = document.getElementById("password2");

    if(un.value == "" || pw1.value == "") {

        alert("用户名或密码不能为空");

        return false;

    }

    if( pw1.value!=pw2.value){

    alert("密码与确认密码不一致");

    return false;

    }

}

</head>


提问者:Wisdomss 2016-04-07 23:34

个回答

  • 天天向上3149394
    2016-04-08 10:41:11
    已采纳

    你在关闭head前加上</script>试试

  • Wisdomss
    2016-04-08 00:02:16

    我发代码给你看看吧:

    <title>无标题文档</title>

    <script type="text/javascrip>

    function check(){

        var un = document.getElementById("text1");

        var pw1 = document.getElementById("password1");

        if(un.value == "" || pw1.value == "") {

            alert("用户名或密码不能为空");    var pw2 = document.getElementById("password2");


            return false;

        }

        if( pw1.value!=pw2.value){

        alert("密码与确认密码不一致");

        return false;

        }

    }

    </head>


  • 浸雨梧桐
    2016-04-07 23:51:16

    截图看看啊