jQuery .each没有在iPhone上工作

时间:2016-03-17 00:05:32

标签: jquery ios iphone

我在我的网站上有这个代码在桌面上运行良好,但在移动设备(特别是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>

如何让它在移动设备上运行?

1 个答案:

答案 0 :(得分:0)

某些浏览器不支持“让”变量:https://caniuse.com/#search=let