gpt4 book ai didi

html - 聊天框创建 HTML/dynamic web/jquery Ajax

转载 作者:太空宇宙 更新时间:2023-11-04 05:27:20 26 4
gpt4 key购买 nike

有人可以告诉我如何用 HTML 创建聊天框吗?我正在为动态网页使用 jquery 和 Ajax。我尝试使用输入文本框,但我不知道如何让另一个聊天框在其中发布双方的 session 。

LS

最佳答案

只要有一个由您的 javascript 动态更新的 DIV。

您还可以通过谷歌找到无数教程。喜欢这个here

特别是,JQuery 的这一小节将为您提供一个工作思路:

function LoadNewMessages() {
// Loads new messages from retrieve_new.php file into new_posts div
$('#new_posts').load("retrieve_new.php");

// Determines whether or not there is a new message by searching new_posts div
if (document.getElementById('new_posts').innerHTML != '') {

// If nothing exists it won't do anything but if there is it will post this:
$('#chatbox').prepend("
"+document.getElementById('new_posts').innerHTML+"
");

// This makes it fade in. Not necessary but cool.
$('#new_message').fadeIn(1000);

// Empties the div for future posts.
$('#actions').html("");
}
}
// Refreshes and checks for new messages.
setInterval("LoadNewMessages();", 1000);

关于html - 聊天框创建 HTML/dynamic web/jquery Ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4587776/

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