gpt4 book ai didi

javascript - 如何在收到消息时自动向下滚动到列表

转载 作者:行者123 更新时间:2023-11-27 23:34:50 24 4
gpt4 key购买 nike

大家好,我有一个 div,其中列出了带有 <ul> 的消息这是代码;

  <section class="portfolio-section masonry-style">
<div class="container">
<h2>TOPLU KONUŞMA</h2>
<div class="container" style="max-height:500px;min-height:500px;overflow-y: scroll;overflow-x: hidden;">
<br />
<input type="hidden" id="displayname" />
<ul id="discussion"></ul>
</div>
</div>

</section>
<div class="container">
<div class="container">
<div id="contact-form">
<textarea name="comment" id="message" placeholder="Mesajınız"></textarea>
<div class="submit-area">
<input type="submit" id="sendmessage" value="Gönder">
</div>
</div>
</div>
</div>

enter image description here

脚本;

    <script src="~/Scripts/jquery.signalR-2.2.0.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="~/signalr/hubs"></script>
<!--SignalR script to update the chat page and send messages.-->
<script>
$(function () {
var currentMember = '@Html.Raw(@ViewBag.Name)';
// Reference the auto-generated proxy for the hub.
var chat = $.connection.chatHub;
// Create a function that the hub can call back to display messages.
chat.client.addNewMessageToPage = function (name, message) {
// Add the message to the page.
$('#discussion').append('<li><strong>' + htmlEncode(name)
+ '</strong>: ' + htmlEncode(message) + '</li>');
};

// Get the user name and store it to prepend to messages.
$('#displayname').val(currentMember);
// Set initial focus to message input box.
$('#message').focus();
// Start the connection.
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
// Call the Send method on the hub.
chat.server.send($('#displayname').val(), $('#message').val());
// Clear text box and reset focus for next comment.
$('#message').val('').focus();
});
});
});
// This optional function html-encodes messages for display in the page.
function htmlEncode(value) {
var encodedValue = $('<div />').text(value).html();
return encodedValue;
}
</script>

所以如您所见,它不会在收到消息时自动向下滚动。这是实时聊天。那么如何在收到消息时自动向下滚动

最佳答案

首先,为下一行添加 id。 Jquery 无法选择正确的 div如果你没有那个 div 的 ID ,因为你有多个 div.container .

<div class="container" style="max-height:500px;min-height:500px;overflow-y: scroll;overflow-x: hidden;" id="messageContainer">

然后使用 jquery 滚动 div通过以下代码使用:

$('div#messageContainer').scrollTop($('div#messageContainer')[0].scrollHeight)

放上代码

(1) 在您的新消息被附加后立即

$('#discussion').append('<li><strong>' + htmlEncode(name) + '</strong>: ' + htmlEncode(message) + '</li>');

(2) 清空输入框后。

$('#message').val('').focus();

关于javascript - 如何在收到消息时自动向下滚动到列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34348260/

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