我選擇了帶有滾動條的選項標簽來查看下拉列表中的內容。我希望當我們單擊“選擇項目”時,滾動應該位于底部。
jquery code
$('document').ready(function(){
$('#textin1').click(function() {
var pos = $('#textin1').offset();
pos.top += $('#textin1').width();
$('#dropdown').fadeIn(100);
$('#dropdown').scrollTop($('#dropdown').find('li:contains("'+$('#textin1').val()+'")').position().top);
return false;
});
$('#dropdown li').click(function() {
$('#textin1').val($(this).text());
$('#dropdown li').removeClass('selected');
$(this).addClass('selected');
$(this).parent().fadeOut(100);
});
});
試試這個,也許對你有用
const scrolling = document.getElementById("scroll");
const config = { childList: true };
const callback = function (mutationsList, observer) {
for (let mutation of mutationsList) {
if (mutation.type === "childList") {
window.scrollTo(0, document.body.scrollHeight);
}
}
};
const observer = new MutationObserver(callback);
observer.observe(scrolling, config);
下一篇nginx的vue集群