<p>ios平台下webapp中时间戳的<a href="https://www.f2er.com/tag/huoqu/" target="_blank" class="keywords">获取</a>方式<a href="https://www.f2er.com/tag/buzhichi/" target="_blank" class="keywords">不支持</a>传统的写法<br>其实就是和时间的format有关<br>比如<code>alert(new Date('2010-11-29 11:11:11'))</code>这样在chrome等浏览器都没事 但是在ios下就invalid date<br>但是<code>alert(new Date('2010/11/29 11:11:11'))</code>这样就可以了</p>