PHP文本框重置

时间:2017-03-13 02:55:26

标签: javascript php chat

所以我正在使用PHP创建一个在线聊天室并刷新聊天,有一个按钮,稍后会隐藏但javascript会自动每秒点击一次,但是每次点击它都会有一个小问题重置文本框,意味着用户必须重新启动他们的消息。这是一个演示teamhaxor.netau.net/Stuff/Chat/chat.php。

这是代码:

<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<input type="submit" name="refresh" id="update">
</form>

<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<input type="text" name="text" id="text">
<input type="submit" name="send">
</form>



<?php

if(isset($_POST['refresh'])) /* i.e. the PHP code is executed only when someone presses Submit button in the below given HTML Form */
{
if ($file = fopen("log.txt", "r")) {
    while(!feof($file)) {
        $line = fgets($file);
        echo $line . "<br>";
    }
    fclose($file);
}
}


if(isset($_POST['send'])) /* i.e. the PHP code is executed only when someone presses Submit button in the below given HTML Form */
{
$text = $_POST['text'];
$myfile = fopen("log.txt", "a+") or die("Unable to open file!");
fwrite($myfile, "\n" . $text);
fclose($myfile);
}



?>


<script>


setInterval(function(){

element = document.getElementById('update');
element.click()

}, 1000);



</script>

如何让它不重置用户输入的文字?提前谢谢。

1 个答案:

答案 0 :(得分:1)

文本框正在重置,因为您每次提交表单时都会刷新页面,而您正在使用jquery代码执行此操作。

要解决此问题,您应该改为进行AJAX调用。