CSS ボタンの href 属性への url を含む変数に影響を与えたいのですが、location.href を試しましたが、うまくいきませんでした。
ここに私のボタンの説明があります:
<div>
<p><a id="gameNextLevel" class="button" href="">Next</a></p>
</div>
これが私のJSF関連のコードです:
var uiNextLevel = $("gameNextLevel");
matchingGame.savingObject.currentLevel="game6.html";
uiNextLevel.click(function(e) {
e.preventDefault();
// location.href = "login.html";
location.href = matchingGame.savingObject.currentLevel;
});
どんなアイデアでもどうぞ、よろしくお願いします:)