「passedThisValue」を「start_battle」関数に渡し、「再戦」で「start_battle」関数を使用したいと考えています。しかし、モーダルがハングするだけです なぜこれが起こっているのですか? 何が間違っている可能性がありますか?助けてください!:) ありがとうございました。
コード:
function start_battle(){
$.ajax({
data: {
receivePassedValue: passedThisValue
},
success: function(data){
}
});
}
$("#start_battle").click(function() {
$.ajax({
success: function(data){
var toAppend = '';
if(typeof data === "object"){
var passedThisValue = '';
for(var i=0;i<data.length;i++){
passedThisValue = data[i]['thisValue'];
}
start_battle(); // can I still get the passedThisValue?
}
}
});
$("#battle").dialog({
modal:true,
buttons: {
"Rematch": function(){
start_battle(); // can I still get the passedThisValue?
}
}
});
$("#battle").show(500);
});