I can't type to inputs

前端 未结 3 1914
时光说笑
时光说笑 2021-01-12 06:32

I have a list which can be sortable. I\'m using jQuery UI with widget, mouse, position, sortable addons.

CSS:

#sortable{
    width : 550px;
    displ         


        
3条回答
  •  -上瘾入骨i
    2021-01-12 06:49

    Just do:

    $( "#sortable_container_id input").click(function() { $(this).focus(); });
    

    and replace sortable_container_id with the id of the element that is the container of all "sortable" elements.

提交回复
热议问题