0

このスクリプトは、www.time.is および #twd ID から時間を受信し、送信ボタンをクリックすると表示されます。

2 つの問題があります。

1-最初の受信時刻のみを表示し、再度送信をクリックしても更新しない

2 ページの更新とデータの損失

以下のコードに3つの問題があります:

<?php include 'simple_html_dom.php'; ?>
<!DOCTYPE html>
<html>

    <head>
        <title>Untitled 1</title>
        <script src="js/jquery.js"></script>
    </head>

    <body>

        <form action="" method="POST">
            <input id="url" name="url" type="text" value="http://www.time.is/">
            <input id="address" name="address" type="text" value="#twd">
            <input id="send" type="submit" value="get">
        </form>

        <ul id="times">

        </ul>

        <script type="text/javascript">
            $("#send").click(function(events) {
                events.preventDefault();

                var url = $("#url").val();
                var address = $("#address").val();
                var dataString = 'url=' + url + '&address=' + address;

                $.ajax({
                    type: "POST",
                    url: "read.php",
                    data: dataString,
                    success: function() {
                        var result = "<?php echo getme($url,$address);  ?>";
                        alert(result);
                        $('#times').append('<li></li>');
                    }
                });
                return true;
            });
        </script>

        <?php 

            function getme($url, $address) {
                $html = file_get_html($url);
                $code = $html->find($address, 0);
                return $code;
            }

            echo getme($url, $address);

        ?>
    </body>
</html>

どんな体でも私を助けることができます..

みんなありがとう

4

1 に答える 1

1

これを試して:

<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
        <script type="text/javascript">
            $(document).ready(function(){

                function timer(){
                $.post( "process.php", function( data ) {
                    $('#times').append('<li>'+data+'</li>');
                });
                }

                setInterval(function(){timer()},1000);


            });
        </script>
    </head>

    <body>
         <ul id="times"></ul>
    </body>
</html>

そして、これをprocess.phpファイルに入れます:

<?php
    include 'simple_html_dom.php';
    $html = file_get_html('http://www.time.is/');

    foreach($html->find('#clock0') as $element){
        echo $element->plaintext;
    }
?>

これは私のテスト結果です:

  • 午前11時15分43秒
  • 午前11時15分46秒
  • 午前11時15分51秒
  • 午前11時15分53秒
  • 午前11時15分53秒
  • 午前11時16分10秒
  • 午前11時15分52秒
  • 午前11時15分42秒
  • 午前11時16分09秒
  • 午前11時16分17秒
  • 午前11時16分12秒

ノート:

1- 間隔を 1000 ミリ秒 (1 秒) から変更することをお勧めします。

clearInterval()2-特定の繰り返しの後に使用することを忘れないでください。

于 2013-11-08T16:19:38.100 に答える