PHP
·
发表于 5年以前
·
阅读量:8292
function isTouchScreen() {
return (
"ontouchstart" in window ||
(window.DocumentTouch && document instanceof DocumentTouch)
);
}