gpt4 book ai didi

php - 用于从 PHP 实时更新
  • 的 jQuery 插件
  • 转载 作者:行者123 更新时间:2023-11-29 01:19:13 25 4
    gpt4 key购买 nike

    是否有任何 jQuery 插件可以创建类似来自 Twitter Main Page 的实时提要的内容? ,使用从 MySQL 数据库获取数据的 PHP?
    PHP文件怎么得?
    谢谢。

    最佳答案

    你真的不需要为此使用插件,你可以使用 jQuery 轻松创建类似的东西来对 PHP MySQL 提要进行 AJAX 调用

    使用 setTimeout() 创建一个脚本来进行重复的 AJAX 调用然后使用 .prepend() 将新找到的结果添加到提要容器中

    HTML

    <html>
    <head><title>Tweets</title>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

    <style>
    #tweets {
    width: 500px;
    font-family: Helvetica, Arial, sans-serif;
    }
    #tweets li {
    background-color: #E5EECC;
    margin: 2px;
    list-style-type: none;
    }
    .author {
    font-weight: bold
    }
    .date {
    font-size: 10px;
    }
    </style>

    <script>
    jQuery(document).ready(function() {
    setInterval("showNewTweets()", 1000);
    });

    function showNewTweets() {
    $.getJSON("feed.php", null, function(data) {
    if (data != null) {
    $("#tweets").prepend($("<li><span class=\"author\">" + data.author + "</span> " + data.tweet + "<br /><span class=\"date\">" + data.date + "</span></li>").fadeIn("slow"));
    }
    });
    }
    </script>

    </head>
    <body>

    <ul id="tweets"></ul>

    </body>
    </html>

    PHP

    <?php
    echo json_encode(array( "author" => "someone",
    "tweet" => "The time is: " . time(),
    "date" => date('l jS \of F Y h:i:s A')));
    ?>

    关于php - 用于从 PHP 实时更新 <li> 的 jQuery 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2798785/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com