jquery代码产生未定义的错误

时间:2009-08-09 03:11:18

标签: jquery

我无法理解为什么下面的代码在firebug中给我这个错误

$未定义

有人可以解释一下吗?

<script type="text/javascript" >
 $(document).ready(function(){
  setTimeout2(function(){
  $("#errormsg4").fadeOut("slow", function () {
  $("#errormsg4").remove();
      }); }, 5000);
 });
</script>

<div id="errormsg4">test</div>

1 个答案:

答案 0 :(得分:3)

正如您所说$未定义意味着您在使用脚本代码之前未提供jquery脚本文件的引用。另外我认为你输错了setTimeout2,它会被设置为setTimeout。尝试下面的代码

<html>
<head>
    <title></title>    
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>    
</head>
<body>
    <div id="errormsg4">
        test</div>
</body>    
<script type="text/javascript">

    $(document).ready(function()
    {
        setTimeout(function()
        {
            $("#errormsg4").fadeOut("slow", function()
            {
                $("#errormsg4").remove();
            });
        }, 5000);
    });
</script>

</html>