0

ユーザーが 5 つの質問に答えるゲームを作成します。ゲームを完了すると、別のページにスコアを表示したいと考えています。

これが私のページの設定方法です:

<div data-role="page" id="displayScore">
  <div data-role="header">
    <h1>How Did You Go?</h1>
</div>
<div data-role="content">
<p id="displayScore" align="center"></p>
    <input type="button" value="Play Again?" onClick="startGame();"/>
    <input type="button" value="Main Menu" onClick="" />
</div>
<div data-role="footer">
  <h4>AL</h4>
</div>
</div>
</body>
</html>

これは私の機能です:

function score()
{
    ans += "You scored <strong> " + score + " </strong> out of <strong> " + count + "!</strong>";
    document.getElementById('displayScore').innerHTML = displayScore;
}
4

1 に答える 1