Új hozzászólás Aktív témák

  • nevemfel

    senior tag

    válasz magortaltos #9735 üzenetére

    Példakód:

    index.html

    <!DOCTYPE html>
    <html lang="hu">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="icon" href="data:,">
        <title>Ajax példa</title>
    </head>
    <body>
        <script>
            (function() {
                var ajaxFunc = function() {
                    fetch("http://localhost/endpoint.php")
                        .then(function(response) {
                            return response.text();
                        })
                        .then(function(body) {
                            console.log(body);
                        })
                        .catch(function(error) {
                            console.error(error);
                        });
                    setTimeout(ajaxFunc, 2000);
                };
                setTimeout(ajaxFunc, 2000);
            }());
        </script>
    </body>
    </html>

    endpoint.php

    <?php
    echo "helló";

    Rally against apathy draws small crowd

Új hozzászólás Aktív témák