我是网络开发的新手 我尝试在我的网页中使用一个简单的jquery函数 但它不会工作。我是否需要在代码中导入任何库?
<title>Sample Code</title>
<link rel="stylesheet" type="text/css" href="mycss.css" />
<script type="text/javascript" src="myscript.js"></script>
</head>
$(document).ready(function(){
$('container').fadeOut(5000);
});
#container{
width: 100%;
height: 200px;
background-color: #92e9ff;
padding-top: 10px;
padding-bottom: 10px;
}
#box1, #box2, #box3, #box4, #box5, #box6{
width: 200px;
height: 200px;
background-color: #404479;
margin-top: 0px;
margin-left: 10px;
display: inline-block;
}
p{
text-align: center;
font-size: 60px;
color: #ffffff;
vertical-align: middle;
line-height: normal;
}
答案 0 :(得分:0)
是的,你需要包含jQuery库。即使您可以使用CDN或下载副本。
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>