Advertisement
Guest User

Untitled

a guest
May 26th, 2014
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <html>
  2. </head>
  3. <script type="text/javascript">
  4. $("#dieBox" ).click(function()
  5. {
  6. $.post( "datei.php", {
  7. parameter1: "Inhalt Hier", parameter2: "Inhalt Da" },
  8. function(data)
  9. {
  10. //$("#dieBox" ).fadeOut(350).html(data).fadeIn(350);
  11. $('#dieBox').html(data);
  12. }); // in der php Datei: $_POST['parameter1'];
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <div id="dieBox" onlick="post();">Das hier ist ein Test.</div>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement