div的onfocus 和onblur事件

我的html中有如下element

 <div tabindex="-1" onfocus="javascript: alert('test')" onblur="javascript: alert('onblur')">area</div>

在desktop端onfocus和onblur可以正常触发,可是在mobile端就不work 了。我在UC,safari
等浏览器中进行了测试,因为对前端不熟悉,请问各位大侠有什么方法吗?

触摸屏要选中另一个可以作为控件的东西,才会触发。

变为可编辑的试试,一般blur和focus用于可以编辑的元素的多

  <div tabindex="-1" contenteditable="true"