-1

我有一个表格,这样说:

<form name="form1" action="" method="post">
<input type="text" name="tfcari" />
<input type="submit" name="btcari" />
</form>

<?php
if (isset($_POST['btcari'])) {

echo $_POST['tfcari'];  

?>

如何这样做:

点击提交 - 回显文本 - 等待 5 秒 - 回显文本(自动) - 等待 5 秒 - 回显文本(自动) - ...

谢谢大家。

4

1 回答 1

1

PHP 在发送到网站之前进行预处理,所以如果你要设置一个 sleep 方法,它只会延迟页面显示那么长时间。

最简单的方法是使用 jQuery 进行 ajax 调用,然后使用 setTimeout 每 5 秒回显一次文本:

// Assuming jQuery is linked
$(function() {
    // Connect to the php file
    $.ajax({
        url: 'php-file-with-tfcari-var.php',
        type: 'POST',
        success: function(data) {
            // data is what the ajax call returns, let's assume it's the $_POST variable from php
            var tfcari = data.tfcari;
            // Now you can loop every 5 seconds with a self calling setTimeout method
            var poll = (setTimeout(function() {
                window.document.write(tfcari);
            }, 5000)();
        }
    });
});
于 2013-04-09T01:12:26.453 回答