我是jquery和javascript整體的新手。我試着做兩件事,但其中只有一件正在工作。我必須改變顏色,以及增加計數器,如下所述。需要幫助的代碼。 例子 -jquery的兩個元素
1 click - 1
2 clicks - 11
5 clicks - 11111
代碼 - HTML
<div id="flash"> <p>hello</p>
</div>
<div id="counter">0</div>
碼 - JAVASCRIPT
$(document).ready(function() {
$('p').click(function() {
$(this).animate({
'color': 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')'
}, 500);
});
$("#flash").click(function() {
$('#counter').html(function(i, val) {
return val * 1 + 1;
});
});
});
代碼 - CSS
p { font-weight: bold; display: inline; cursor: pointer; }
這裏是我的代碼,我試着玩 - http://jsfiddle.net/crlf/pVHYc/
應避免到這裏來的鏈接和「去弄明白「聲明。在這裏向我們提出問題,在帖子中提供破碎的代碼,然後根據需要提供jsfiddle的鏈接。你甚至沒有說明你的問題是爲了幫助我們。 – Yatrix