我想統計用戶點擊每次鼠標點擊的次數,所以我創建了一個函數,但它只計算第一次點擊。我創建一個變量來存儲計數值。點擊計數功能不起作用?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>clicks</title>
<script type="text/javascript">
function clickcount(){
var clicks=0;
document.getElementById('count').value= ++clicks;
}
document.onclick=clickcount;
</script>
</head>
<body>
<input type="text" id="count" />
</body>
</html>
http://jsfiddle.net/vuASn/ – xandercoded 2012-02-16 03:29:19
現在我明白了,如果我把varibale出來的函數,那麼increaments它的價值。現在我的問題是爲什麼我們需要把這個變量放在函數 – 2012-02-16 03:32:09