私はボタンをクリックするたびに1から0の間を交互に繰り返すロジックを実装しようとしています。次のコードでは、ボタンを押すたびにカウントが常に0になります。私に手伝ってくれてありがとう。HTMLボタンの数
<html>
<head>
<script type="text/javascript">
function main(){
var button = document.getElementById('button');
count = 0;
if(button.onclick && count == 0){
alert(count);
count = 1;
}
else if(button.onclick && count == 1){
alert(count);
count = 0;
}
}
</script>
</head>
<body>
<button type="button" id="button" onclick="main()">Click Me!</button>
</body>
</html>
ような何かが私は 'あなたの主な機能にするために使用さbutton.onclick'何聞いても?それはどんな価値をもたらしますか? –