Skip to content

Instantly share code, notes, and snippets.

@ryanlid
Created September 12, 2016 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanlid/945d058fc3fe0c9a7d5f0a2b0d440d05 to your computer and use it in GitHub Desktop.
Save ryanlid/945d058fc3fe0c9a7d5f0a2b0d440d05 to your computer and use it in GitHub Desktop.
判断浏览器的 ua ,如果是移动端,链接跳转至子目录
(function () {
if (navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i)) {
location.href = 'm/index.html#type'
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment