我使用自提交表单来处理数据,但我现在需要单独处理它,所以现在我需要提交一个表单,返回结果并将其放在一个 div 中。似乎使用AJAX
是一种很好的方法来让数据返回到表单所在的原始页面。我看过很多例子,但我真的不明白如何去做或真正了解它是如何工作的。
假设我想将此表单数据发送index.php
到我的流程页面twitterprocess.php
我需要做什么并让它返回以显示处理的数据。
<form method="POST" action="twitterprocess.php">
Hashtag:<input type="text" name="hashtag" /><br />
<input type="submit" value="Submit hashtag!" />
</form>
这是我一直用来显示结果的。
<?php foreach($results as $result) {
$tweet_time = strtotime($result->created_at);?>
<div>
<div class="tweet"> <?php echo displayTweet($result->text),"\r\n"; ?>
<div class="user"><?php echo "<strong>Posted </strong>" . date('j/n/y H:i:s ',$tweet_time) ?><strong> By </strong><a rel="nofollow" href="http://twitter.com/<?php echo $result->from_user ?>"><?php echo $result->from_user ?></a></div>
</div>
<br />
<? } ?>
我是 AJAX 的新手,但任何指导将不胜感激