ios嵌套H5页面,出现的小bug;

ios嵌套H5页面,点击数字时就会弹出打电话的功能;解决方法:

   在head标签中添加:

<meta name="format-detection" content="telephone=no">

ios嵌套H5页面,只要碰到页面,就会使input获取焦点,调取ios键盘,解决方法:
在页面上添加js如下:
$("body")[0].addEventListener("touchstart",function(){
document.activeElement.blur();
})
上一篇:转!!配置Tomcat时server.xml和content.xml自动还原问题


下一篇:配置ssm 时, web.xml 文件无 # 自动代码提示