下面编写的代码给出了以下错误:应该有一个' p'零件

时间:2017-06-17 17:49:41

标签: javascript jquery html

问题陈述:创建一个带有段落的网页,该段落末尾有一个链接。如果你点击链接,它会慢慢淡入(文本上大约1.5秒#FF0000(红色)块,顶部有#FFFF00(黄色)文本。

我的书面HTML代码如下:

 <!DOCTYPE html>
 <html>
 <head>
 <title>jquery</title>
 <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
 <script>
 $(document).ready(function(){
 $("[href]").click(function(){
 $("p").hide();
 $("#div1").fadeIn("slow","swing");
 $("#div1").fadeIn(15000,"swing");
 $("div").text("WELCOME GUYS!")
  });
  });
 </script>
 <style>
 p{
 width: 400px;
 height:  90px;
  }
 div{
 width: 550px;
 height: 65px;
 text-align: center;
 font-size: 36px;
 color: #FFFF00;
  }
 #div1{
 width:400px;height:90px;display:none;background-color:#FF0000
 }
 </style>
 </head>
 <body>
 <p>
  Machine learning is a type of artificial intelligence (AI) that provides 
  computers with the ability to learn without being explicitly programmed. 
  <a href="#">click!</a> </p>
  <div id="div1"></div>
  </body>
  </html>

我必须纠正的错误: - 应该有一个&#39; p&#39;零件 假 我现在该怎么办?

1 个答案:

答案 0 :(得分:0)

对我来说很好。日志中没有任何错误。淡出{{1}}。我看到的唯一问题是你在彼此之后有两个单独的fadeIn函数,只有第一个被使用。