- 中文乱码(页面显示、控制台打印)
1)打开工程中
index.html
文件
2)在<head>
标签下添加如下标签
<meta charset="UTF-8">
- 消除300-350ms,点击延迟
1)打开工程中
index.html
文件
2)在<head>
标签下添加如下标签
<meta name="viewport" content="width=device-width">
⚠️⚠️⚠️ 如果由于某种原因无法进行此更改,则可以使用
touch-action
属性在页面或特定元素上实现相同的效果(Firefox
不支持这种技术)
html {
touch-action: manipulation;
}
- 添加白名单
1)打开工程中
config.xml
文件
2)在widget
节点下,新增如下标签
<!-- Don't block any requests -->
<access origin="*" />
<!-- Allow all unrecognized URLs to open installed apps *NOT RECOMMENDED* -->
<allow-intent href="*" />
<!-- A wildcard can be used to allow the entire network, over HTTP and HTTPS. This is *NOT RECOMMENDED* -->
<allow-navigation href="*" />
网友评论