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

来源:1-2 新朋友你在哪里(如何插入JS)

Wisdomss

2016-04-07 23:34

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


写回答 关注

3回答

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

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

    Wisdom...

    可以了,谢谢!

    2016-04-08 12:37:53

    共 1 条回复 >

  • 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

    截图看看啊

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题