Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 HTML5 或 Jquery 不太了解,因此我需要以下帮助:
我想在我的 html 中嵌入一个 swf,但如果用户在 iOS 上查看该网站,我需要它回退到 Jquery。我似乎在网上找不到任何东西,因为大多数人只用视频解释如何做到这一点。我需要一个完整的 Jquery 画廊,而不仅仅是一个视频。关于如何做到这一点的任何建议?
在 navigator.userAgent 或 navigator.platform 的帮助下检测 iphone 或 ipad 设备,然后如果不是 iphone/ipad 则嵌入 flash,否则嵌入您的画廊。
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/i) ? true : false ); if(!iOS){ //render the flash } else { //render the gallery. }