移动开发meta集合精

Posted 滔滔阿拉伯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动开发meta集合精相关的知识,希望对你有一定的参考价值。

以下是开发中经常用到的meta标签

1、移动webAPP的Meta 用法:

<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">

 

2、刷新网页

你可以设置一段时间后对页面进行刷新操作。meta http-equiv=”refresh”可以指定浏览器延迟一段时间自动刷新页面。下面的meta-tag指定浏览器每5秒自动刷新一次。

<meta http-equiv=”refresh” content=”5″ />

3、重定向

我们可以使用refresh meta标签对页面进行重定向。下面的例子将在5秒后访问www.25xt.com

<meta http-equiv=”refresh” content=”5;url=’http://www.25xt.com’” />

4、控制浏览器缓存

当我们在本地测试网页的时候,没有及时更新新内容,可能就是有浏览器缓存。这个时候,我们只要通过使用Meta标签禁用浏览器缓存,可以解决。通用代码如下:

<meta http-equiv=”Cache-Control” name=”no-store” />

 

5、在移动开发当中,屏蔽数字当作电话号码的代码:

<meta content=”telephone=no” name=”format-detection” />

以上是关于移动开发meta集合精的主要内容,如果未能解决你的问题,请参考以下文章

前端开发常用js代码片段

移动前端头部标签(HTML5 head meta)

关于移动开发的一些meta设置

Unity报错:Read only asset Packages/com.xxxxx.xxx.xxxx/Editor/VSCodeDiscovery.cs.IPGSD has no meta(代码片段

Unity报错:Read only asset Packages/com.xxxxx.xxx.xxxx/Editor/VSCodeDiscovery.cs.IPGSD has no meta(代码片段

移动端:开发技巧