a 和 button 元素 可以有 :focus 效果 和回车触发点击事件
如果其他元素想要模仿聚焦性 ,需要设置
<span tabindex="0" role="button">button</span>
如果需要回车触发事件需要 附加额外js 绑定事件
<span tabindex="0" role="button" data-key="true">button</span>
键盘聚焦性 和点击性
原文:http://www.cnblogs.com/chuangweili/p/5159619.html