这里的任何人都遇到过这样的问题 - > https://screencast-o-matic.com/watch/cF11ihbSe8
当我点击日期选择器上的日期时,它会跳到顶部。它只发生在移动设备上。
我相信,正是因为这个" href ='#'"""
<a class="ui-state-default" href="#">15</a>
我尝试使用jQuery删除它
jQuery(document).ready(function($) {
jQuery('a.ui-state-default').removeAttr('href');
})
但它不起作用。请指教。谢谢!