Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <html>
- <head>
- <script type="text/jscript" src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
- <script type="text/jscript">
- $(document).ready( function() {
- $("#btInfo").click(function() {
- $("#infoDpt").load("applet.php")
- });
- $("#btChimie").click(function() {
- $("#infoDpt").load("test.php")
- });
- });
- </script>
-
- <?php
- echo "<p>Le département …</p>";
- ?>
- </head>
-
- <body>
- <button type="button" id="btInfo">applet</button>
- <button type="button" id="btChimie">test</button>
- <div id="infoDpt"></div>
- </body>
- </html>
|