我選擇帶有捲軸的選項標籤來查看下拉清單中的內容。我希望當我們單擊選擇項目時,滾動條應位於底部。
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); }); });
試試這個也許對你有用