使用jquery时老是提示$未定义
<htmlxmls="http://www.w3.org/1999/xhtml"><head><title></title><metahttp-equiv="Conten...
<html xmls="http://www.w3.org/1999/xhtml">
<head>
<title>
</title>
<meta http-equiv="Content-Type" content="text/javascript;charset=utf-8">
<script type="type/javascript" src="jquery-2.1.4.min.js"></script>
<script type="text/javascript">
function document_ready($){
$(document.body).attr("bgColor","yellow").html("<h1>Hello,JQuery World!</h1>")
}
$(document).ready(document_ready);
</script>
</head>
</html> 展开
<head>
<title>
</title>
<meta http-equiv="Content-Type" content="text/javascript;charset=utf-8">
<script type="type/javascript" src="jquery-2.1.4.min.js"></script>
<script type="text/javascript">
function document_ready($){
$(document.body).attr("bgColor","yellow").html("<h1>Hello,JQuery World!</h1>")
}
$(document).ready(document_ready);
</script>
</head>
</html> 展开
4个回答
展开全部
首先你要确认你的jq文件是否引入,最大的可能性就是你的文件路径出错。因为$是jq对一些对象进行了封装,只有jq里才有$指代对象,你可以按f12然后点击source(谷歌)、调试器(火狐)、脚本(火狐firebug模式下)查看你的jq文件是否引入。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function document_ready(){
$("body").css("background-color","yellow").html("<h1>Hello,JQuery World!</h1>")
}
$(function(){
document_ready();
});
$("body").css("background-color","yellow").html("<h1>Hello,JQuery World!</h1>")
}
$(function(){
document_ready();
});
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
估计是你jq文件导入的路径出问题了,检查下路径
更多追问追答
追问
换成这个也不行 $还是定义不了
追答
你……那个是网上的链接吧?好歹加上http?如果是网上的要完整的连接~如果是本地的我并不知道你的文件放在哪里?可以截个图看看你这个页面和js文件的目录?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询