我有一个Javascript函数,可以根据文档中的一些隐藏字段更改某些元素的位置,这些隐藏字段会定期使用ajax更新。
问题:
由于javascript函数(onclick)在Ajax(重新加载隐藏字段所在的元素)之前执行,因此应该改变位置的元素总是落后一圈。
我想要达成的目标:
如果在onclick事件之前执行ajax重载,则问题将得到解决,因此对隐藏字段的引用将是正确的。 (而不是落后)
这有可能以任何方式存在,还是有另一种解决方案?
代码:
呼叫:
<h:commandButton id="dice" onclick="animate()" alt="Würfel mit einer Eins" image="resources/img/wuerfel1.png" action="#{spiel.dice()}" tabindex="4" title="Würfel mit einer Eins">
<f:ajax render="gameinfo" />
</h:commandButton>
Javascript功能:
function animate() {
var newPlayer1 = document.getElementById('player1score').value;
var newPlayer2 = document.getElementById('player2score').value;
// Spieler 1 Animation
$("#player1").fadeOut(700, function() {
$("#player1").appendTo(newPlayer1);
$("#player1").fadeIn(700);
});
// Spieler2 Animation
$("#player2").delay(1400).fadeOut(700, function() {
$("#player2").appendTo(newPlayer2);
$("#player2").fadeIn(700);
});
}
答案 0 :(得分:2)
您应该使用onevent
f:ajax
<h:commandButton id="dice" alt="Würfel mit einer Eins" image="resources/img/wuerfel1.png" action="#{spiel.dice()}" tabindex="4" title="Würfel mit einer Eins">
<f:ajax render="gameinfo" onevent="animate" />
</h:commandButton>
将您的animate
功能更改为
function animate(data) {
if (data.status === 'success') {
//your original code goes here...
}
}
另外:通过 BalusC :Proccess onclick function after ajax call
阅读此答案