Can I open a dropdownlist using jQuery

后端 未结 14 1620
终归单人心
终归单人心 2020-11-22 09:49

For this dropdownlist in HTML:


I would lik

14条回答
  •  萌比男神i
    2020-11-22 10:02

    i just added

    select = $('#' + id);
    length = $('#' + id + ' > option').length;
    if (length > 20)
        length = 20;
    select.attr('size', length);
    select.css('position', 'absolute');
    select.focus();
    

    and add into the select

    onchange="$(this).removeAttr('size');"
    onblur="$(this).removeAttr('size');"
    

    to make the same appearance like the classic one (overlap the rest of html)

提交回复
热议问题