私はクラス用の簡単なスクリプトを作成しようとしています。私はonclickイベントと配列を別々に行う方法を理解しましたが、一緒に働かせる方法がわかりません。私はまだリフレッシュ時に運命を変更したいが、ボタンをクリックするオプションがある。onclickを配列で使用する
にOnclick:
<button onclick="myFunction()">Get your fortune!</button>
<p id="fortune"></p>
<script>
function myFunction() {
document.getElementById("fortune").innerHTML = ???? ;
}
</script>
アレイ:
<script>
var fortune = new Array(10);
fortune[0]="May life throw you a pleasant curve.";
fortune[1]="Procrastination is the thief of time.";
fortune[2]="Your road to glory will be rocky, but fulfilling.";
fortune[3]="Patience is your alley at the moment. Don’t worry!";
fortune[4]="All things are difficult before they are easy.";
fortune[5]="If you want the rainbow, you have to tolerate the rain.";
fortune[6]="Determination is what you need now.";
fortune[7]="Do not let ambitions overshadow small success.";
fortune[8]="First think of what you want to do; then do what you have to do.";
fortune[9]="Hard words break no bones, fine words butter no parsnips.";
c=Math.round(Math.random()*9);
document.write(fortune[c]);
</script>