在iOS上检测Safari
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在iOS上检测Safari相关的知识,希望对你有一定的参考价值。
It's probably not a good idea to always use this trick but if you need to, you'll be glad you bookmarked this script.
/** * Title: Detect Safari On ios * * * @param string $role Role name. * @param int $user_id (Optional) The ID of a user. Defaults to the current user. * @return bool */ function add_ios_styles(){ global $is_iphone; if( $is_iphone ){ wp_enqueue_style('iphone-css', get_stylesheet_directory_uri() . '/iphone.css' ); } else{ wp_enqueue_style('common-css', get_stylesheet_directory_uri() . '/common.css' ); } } add_action('wp_print_styles', 'add_ios_styles');
以上是关于在iOS上检测Safari的主要内容,如果未能解决你的问题,请参考以下文章
如何从 IOS Safari 中的 touchmove 事件中检测滚动画布
有没有办法在过滤掉 iOS Chrome、Firefox 和其他浏览器的同时检测 iOS Safari?