Uncaught ReferenceError: $ is not defined怎么解决
$(function () {
//function Submite() {
// document.getElementById("Comments").style.display = "none";
// //var content = document.getElementById("mmmmmm").value;
//$.post("ProductDetail.aspx", {op:'insert', Content:content});
$("#tbbtn").click(function () {
document.getElementById("Comments").style.display = "none";
var vcontent = $("#mmmmmm").val();
$.getJSON("Comment.ashx", { op: 'insert', content: vcontent }, function (data) {
if (data != null) {
window.location.href = "ProductDetail.aspx";
}
});
//}
});
});
$你引用jquery的js了吗?如果没有引用需要引用和注册的。网上一大片,自己找一下!
怎么引用
@菜鸟需帮助: 我告诉你一下,但是以后希望你自己要学会自己解决和查阅资料。
<html> <head> /*src就代表了你要引用jquery的脚本,比如你是本地的就引用本地文件下载下来,如果你是网上的可以把这个网址全名放在这边也是可以的啊*/ <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); }); </script> </head> <body> <p>If you click on me, I will disappear.</p> </body> </html>
@Mr.Brian: 3Q