未捕获的ReferenceError:$未定义(ajax)

我在一个简单的jsp上有这个错误:未捕获的ReferenceError:$未定义

我只是试着回忆一下在eclipse上另一个项目的服务rest,但它似乎不起作用..

代码在这里:

        var people = { "address": "Street 12", "name": "twelve", "id": 12, "surname": "twelve" }; function sendobject() { $.ajax({ type: "POST", url: "http://localhost:8080/HibernateTutorialWeb/rest/person/post", data: markers, contentType: "application/json; charset=utf-8", dataType: "json", success: function(data) { alert(data); }, failure: function(errMsg) { alert(errMsg); } }); }     </ 

更新:

尝试使用谷歌CDN的jQuery,但仍然无法正常工作

  

未捕获的ReferenceError:$未定义sendobject @ index.jsp:15onclick @index.jsp:28

不应该是自闭的,它不会加载脚本。 请参阅为什么自动关闭脚本标记不起作用?

更改