<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>moockup< /title>
<style>
.yellowBackground {
background-color: yellow;
}
.redBackground {
background-color: red;
}
</style>
</head>
<body>
<button id="button" class="yellowBackground" id="thumb" >paina tästä< /button>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(function() {
$("#button").click(function() {
changeThumb();
});
});
function changeThumb() {
$("#thumb").toggleClass("yellowBackground redBackground");
}
</script>
</body>
</html>
爲什麼這不起作用我想按下該按鈕,它必須在每次點擊後將其顏色更改爲黃色和紅色,我知道如何使用JavaScript,但我現在正在學習jQuery。按鈕更改顏色
你有你的按鈕標記兩個ID .... –
啊哈我不能這樣做呢?好吧,我現在要做什麼? – waleedd32