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
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<title>Nouvelle page 1</title>
<style type="text/css">
html, body {
margin:0;
padding:0;
}
</style>
<script type="text/javascript">
$(function(){
$("#foo, #bar").click(function(){
ts= new Date().getMilliseconds()
$("#output").load( "test.htm?cache="+ts+ (($(this).attr('id')=='foo')?' #fooform':' #barform') )
})
})
</script>
</head>
<body >
<input type="button" id="foo" value="foo" /><br />
<input type="button" id="bar" value="bar" /><br/>
<div id="output"></div>
</body>
</html> |