未捕获的引用错误:在HtlmInputElement上未定义$ ajax。<匿名>

时间:2019-04-09 03:00:51

标签: jquery ajax referenceerror

我得到

  

“未捕获的ReferenceError:未定义$ ajax”

我是Web开发的新手。其他jquery函数也可以,但是没有定义ajax。据我所知,我没有使用苗条的版本。浏览器有什么加载方式吗?我正在附上最少的代码。

我在“静态”部分尝试了本地版本的jquery。 还有从jquery.com网站和Microsoft CDN到jquery的其他链接。

<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
        <script>
            $(document).ready(function(){
                $("#UpdateId").on('click', function(){
                    $ajax({
                        data : {
                            Name    : $('#NameId').val(),
                        },
                        method : 'POST',
                        url : '/update'
                    })
                });
            });
        </script>
    </head>
    <body>
        <form method=post enctype=multipart/form-data name = "partupdate">
            <label for="User"> Name:</label>
            <input type="text" id="NameId" name="Name" size = 10>
            <input id ="UpdateId" type="button" name="flag" value="Update">
        </form>
    </body>
</html>

0 个答案:

没有答案