我在我的网站上有这个代码在桌面上运行良好,但在移动设备(特别是iPhone 6s)上,它根本不起作用。我试过将它包含在头部和页脚中。
<script>
jQuery( document ).ready(function() {
jQuery('.cat-title').each(function(){
// caching the variable:
let el = jQuery(this);
el.prependTo(el.next('a'));
});
});
</script>
如何让它在移动设备上运行?