<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <style> button,input{ width: 100px; height: 100px; margin-top: 100px; } </style> </head> <body> <input type="button" value="input按钮"> <button>button按钮</button> <script src="//cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script> <script> $(function(){ $("input").on("touchstart", function(){ $(this).val("input focus"); }).on("touchend", function(){ $(this).val("input blur"); }); $("button").on("touchstart", function(){ $(this).text("button focus"); }).on("touchend", function(){ $(this).text("button blur"); }); }); </script> </body> </html> 项目中遇到使用安卓手机点击按钮可以获得焦点和失去焦点。IOS系统的却获取不到,这是为什么呢
你试试touch的。
三种在规范中列出并获得跨移动设备广泛实现的基本触摸事件:
一周热门 更多>