Can I open a dropdownlist using jQuery

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

For this dropdownlist in HTML:


I would lik

14条回答
  •  花落未央
    2020-11-22 09:51

    I was trying to find the same thing and got disappointed. I ended up changing the attribute size for the select box so it appears to open

    $('#countries').attr('size',6);
    

    and then when you're finished

    $('#countries').attr('size',1);
    

提交回复
热议问题