如果解决了我昨天遇到的所有问题,但是当我将文件拖到任何浏览器中时,它只会说“你好”并且根本不包含该元素,单击时它也不会隐藏。
我的索引.html
<!DOCTYPE HTML>
<HTML>
<head></head>
<body>
<title>Mary Bishop</title>
<link href="stylesheet.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js'></script>
<script type="text/javascript" src="jscript.js"></script>
<div ID="contact">Hello</div>
</body>
</HTML>
样式表.css
#contact {
height: 100px;
width: 100px;
background-color: #517F8F;
border-radius: 25px;
border: 2px solid blue;
text-align: center;
display: block;
text-align: center;
vertical-align: middle;
line-height: 100px;
}
脚本.js
$(document).ready(function(){
$('#contact').click(function(){
$(this).hide();
});
});
我将body标签向上移动以包含所有链接(如您在当前HTML文件中所见),但这并没有改变任何东西:(我很困惑。任何帮助将不胜感激。谢谢