jquery focus not working on a page loaded with ajax

前端 未结 3 561
灰色年华
灰色年华 2021-01-28 00:41

My code

index.php





        
3条回答
  •  误落风尘
    2021-01-28 01:18

    ADDITIONAL SOLUTION Had same issue where focus() didn't seem to work no matter what I tried.

    Eventually turned out that what was needed was scrolling to the correct position:

    • jQuery scroll to element
    • $(window).scrollTop() vs. $(document).scrollTop()

提交回复
热议问题