JavaScript、jQuery、PHP を使用しています。JavaScript 関数の実行を 1 回に制限するにはどうすればよいですか?
私の MainJQuery ファイルには Ajax があります。display.php をしばらく実行します。
....
$.ajax({
type:'POST',
url: 'display.php',
data:'id='+id ,
success: function(data){
$("#response").html(data);
//Here Get_list should be execute only once.
get_list('get');
// Display should execute as usual
display();
}//success
}); //Ajax
.......
get.Php ファイルは JavaScript に値を書き込みます。
<?php
print "<script language='javascript'>";
print " g_cost[g_cost.length]=new Array('STA-VES','East',4500);";
print " g_cost[g_cost.length]=new Array('STA-CRF','West',5400);";
print "</script>";
?>
私の JavaScript 関数には、PHP からの次の値があります。
function get_list('get'){
for(var i=0;i<g_cost.length;i++)
var temp = g_cost[i];
var Name = temp[0];
var direction = temp[1];
var cost = temp[2];
..
some code
...
}
function display(){
for(var i=0;i<g_cost.length;i++)
alert(g_cost.length);
var temp = g_cost[i];
alert(temp[0]);
alert(temp[1]);
alert(temp[2]);
}
jQuery Ajax成功部分でJavaScript関数の実行を制限することはできますか?