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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(function(){
$('.page1').click(function(){
$.get('page1.html', function(data) {
$('.resultat').html(data);
});
});
$('.page2').click(function(){
$.get('page2.html', function(data) {
$('.resultat').html(data);
});
});
});
</script>
<form action="" method="get">
<input type="submit" value="Page 1" class="page1">
<input type="submit" value="Page 2" class="page2">
</form>
<div class="resultat"></div>
</body>
</html> |
Partager