Skip to content

Instantly share code, notes, and snippets.

@tc-imba
Last active December 14, 2023 22:03
Show Gist options
  • Save tc-imba/b02ac22ca087043e685d8105d94478f8 to your computer and use it in GitHub Desktop.
Save tc-imba/b02ac22ca087043e685d8105d94478f8 to your computer and use it in GitHub Desktop.
Bilibili私信找到第一个未回复的人
var container = $(".list-container.ps");
var timer = setInterval(
function () {
container.scrollTop(container[0].scrollHeight);
var notify = container.find(".notify.notify-number");
if (notify) {
container.scrollTop(notify[0].top);
clearInterval(timer);
}
}, 100
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment