Skip to content

Instantly share code, notes, and snippets.

@janily
Created June 27, 2016 08:22
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 janily/df11da37f074b522551e691b66816f3a to your computer and use it in GitHub Desktop.
Save janily/df11da37f074b522551e691b66816f3a to your computer and use it in GitHub Desktop.
兼容手机和PC的点击事件代码,支持touch事件则用touch,否则使用click
var clickOrTouch = (('ontouchstart' in window)) ? 'touchstart' : 'click';
$("elemeng").on("clickOrTouch",function(){
....
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment