Skip to content

Instantly share code, notes, and snippets.

@i5ting
Created September 12, 2013 01:43
Show Gist options
  • Select an option

  • Save i5ting/6532237 to your computer and use it in GitHub Desktop.

Select an option

Save i5ting/6532237 to your computer and use it in GitHub Desktop.
javascript 判断移动设备是否为ipad
<script>
function y_ipad(){
var ua = navigator.userAgent.toLowerCase();
var s;
s = ua.match(/iPad/i);
if(s=="ipad")
{
return true;
}
else{
return false;
}
}
</script>
//其他设备与此类似
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment