我对这个社区以及jQuery / JavaScript都很陌生,但我只花了一个小时研究,我根本看不出有什么问题。
我试图说明,当你点击它时会改变它的类。
我的代码的重要部分是
HTML:
<div class="taskbar">
<div id="taskbar-start" class="taskbar-start-inactive">
<img class="taskbar-start-logo" src="img/logo.png" />
<div class="taskbar-start-text">Start</div>
</div>
</div>
CSS:
#taskbar-start {
margin-top: 4px;
margin-bottom: 2px;
margin-left: 2px;
width: 90px;
height: 33px;
background-color: #C2C5CA;
cursor: pointer;
}
.taskbar-start-inactive {
box-shadow: -1px -1px 0px 0px #000 inset, 1px 1px 0px 0px #FFF inset, -2px -2px 0px 0px #868A8E inset;
}
.taskbar-start-active {
box-shadow: -1px -1px 0px 0px #FFF inset, 1px 1px 0px 0px #000 inset, 2px 2px 0px 0px #868A8E inset;
}
的JavaScript
$('#taskbar-start').click(function() {
$(this).toggleClass('taskbar-start-active');
alert("Yeah!");
});
哪个不起作用。现在,我不想下载jQuery来使用它,因为一旦完成,我想在Tumblr上使用代码作为主题,在那里下载jQuery不会很好用我假设。目前我拥有它和我的JavaScript文件包含如下:
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="javascript.js"></script>
我尝试了一个我在其他地方找到的代码来测试我的jQuery是否已加载(我忘了我找到它的地方,我很抱歉),这是
window.onload = function() {
if (window.jQuery) {
// jQuery is loaded
alert("Yeah!");
} else {
// jQuery is not loaded
alert("Doesn't Work");
}}
这似乎有效,但我的代码没有。如果我在这里复制我的整个代码,然后尝试一下,它就可以了,所以它可能是试图包含jQuery的东西吗?
就像我说我是超级新人一样,如果我的问题以某种方式愚蠢到来,我真的很抱歉。
答案 0 :(得分:1)
将您的代码放在document.ready
中
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="javascript.js"></script>
<script>
$(document).ready(function(){
$('#taskbar-start').click(function() {
$(this).toggleClass('taskbar-start-active');
alert("Yeah!");
});
});
</script>