<i id='0MREV'><tr id='0MREV'><dt id='0MREV'><q id='0MREV'><span id='0MREV'><b id='0MREV'><form id='0MREV'><ins id='0MREV'></ins><ul id='0MREV'></ul><sub id='0MREV'></sub></form><legend id='0MREV'></legend><bdo id='0MREV'><pre id='0MREV'><center id='0MREV'></center></pre></bdo></b><th id='0MREV'></th></span></q></dt></tr></i><div id='0MREV'><tfoot id='0MREV'></tfoot><dl id='0MREV'><fieldset id='0MREV'></fieldset></dl></div>
  1. <small id='0MREV'></small><noframes id='0MREV'>

  2. <tfoot id='0MREV'></tfoot>

      <bdo id='0MREV'></bdo><ul id='0MREV'></ul>
  3. <legend id='0MREV'><style id='0MREV'><dir id='0MREV'><q id='0MREV'></q></dir></style></legend>
    1. jQuery 插件实时更新 &lt;li&gt;来自 PHP

      时间:2023-12-01

      <legend id='44hZb'><style id='44hZb'><dir id='44hZb'><q id='44hZb'></q></dir></style></legend>

        <bdo id='44hZb'></bdo><ul id='44hZb'></ul>
        • <tfoot id='44hZb'></tfoot>
        • <i id='44hZb'><tr id='44hZb'><dt id='44hZb'><q id='44hZb'><span id='44hZb'><b id='44hZb'><form id='44hZb'><ins id='44hZb'></ins><ul id='44hZb'></ul><sub id='44hZb'></sub></form><legend id='44hZb'></legend><bdo id='44hZb'><pre id='44hZb'><center id='44hZb'></center></pre></bdo></b><th id='44hZb'></th></span></q></dt></tr></i><div id='44hZb'><tfoot id='44hZb'></tfoot><dl id='44hZb'><fieldset id='44hZb'></fieldset></dl></div>

                <small id='44hZb'></small><noframes id='44hZb'>

                  <tbody id='44hZb'></tbody>
                本文介绍了jQuery 插件实时更新 &lt;li&gt;来自 PHP的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                是否有任何 jQuery 插件可以使用 PHP 创建类似于 Twitter 主页 的实时提要,哪个是从 MySQL 数据库中获取数据的?
                PHP文件怎么得?
                谢谢.

                is there any jQuery plugin to create something like the live feed from the Twitter Main Page , using PHP, which is getting the data from a MySQL database?
                How has to be the PHP file?
                Thanks.

                推荐答案

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

                You really don't need a plugin for this, you could easily create something similar yourself using jQuery to make AJAX calls to a PHP MySQL feed

                使用 setTimeout() 创建一个脚本以进行重复发生的 AJAX 调用,然后添加使用 .prepend()

                Create a script to make reoccurring AJAX calls using setTimeout() and then add the new found results to the feed container using .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')));
                ?>
                

                这篇关于jQuery 插件实时更新 &lt;li&gt;来自 PHP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:电子邮件模板生成器,例如 Mailchmip 下一篇:如何使用 PHP 动态发布 ical 文件以供 Google 日历读取?

                相关文章

                <tfoot id='281l6'></tfoot>
              1. <legend id='281l6'><style id='281l6'><dir id='281l6'><q id='281l6'></q></dir></style></legend>

                  1. <i id='281l6'><tr id='281l6'><dt id='281l6'><q id='281l6'><span id='281l6'><b id='281l6'><form id='281l6'><ins id='281l6'></ins><ul id='281l6'></ul><sub id='281l6'></sub></form><legend id='281l6'></legend><bdo id='281l6'><pre id='281l6'><center id='281l6'></center></pre></bdo></b><th id='281l6'></th></span></q></dt></tr></i><div id='281l6'><tfoot id='281l6'></tfoot><dl id='281l6'><fieldset id='281l6'></fieldset></dl></div>
                  2. <small id='281l6'></small><noframes id='281l6'>

                      <bdo id='281l6'></bdo><ul id='281l6'></ul>