1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <!-- Script initialisation jquery -->
<script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#bt").click(function() {
var texthtml = '';
for(var i=0; i<10; i++) // (10 pour mes test !)
{
for(var j=0; j<20; j++) // (20 pour mes test !)
{
// alert(i + ' - '+ j);
$.ajax({ /* Ajax avec Jquery */
async: false, // SYNCHRONE
type: 'POST',
url: 'traitement.php',
data: "i="+i+"&j="+j,
dataType: 'html',
cache: false,
success: function(texthtml) {
$("#resultat").append(texthtml+'<br />\n');
}
});
}
}
});
}); |
Partager