
H5
风吹琉璃
这个作者很懒,什么都没留下…
展开
-
微信设置了字体大小在H5中怎么配置不会混乱
vue项目中IOS手机在APP.vue样式中加入body { -webkit-text-size-adjust: none !important;}安卓手机在index.html中设置<script> (function() {undefined if (typeof WeixinJSBridge == 'object' && typeof WeixinJSBridge.invoke == 'function') {undefined原创 2022-04-08 11:24:57 · 430 阅读 · 0 评论 -
如何使用uni.$emit()和uni.$on() 进行页面间通讯
https://ask.dcloud.net.cn/article/36010列表返回刷新列表onLoad (option) { // 监听事件 uni.$on('resetServiceList', () => { console.log('执行刷新resetServiceList') this.getUpdateData() })}onUnload () { uni.$off('resetServiceList') console原创 2021-12-22 16:18:47 · 550 阅读 · 0 评论 -
小程序APP嵌套的H5与小程序APP通信
// IOSwindow.webkit.messageHandlers.JSObject.postMessage("center");// Androidwindow.WebViewJavascriptBridge.send("center", function (responseData) { console.log(responseData);});// 小程序miniapp(小程序端用web-view,网页向应用 postMessage 时,会在特定时机(后退、组件销毁、分享)触发并收到原创 2021-08-29 17:57:09 · 329 阅读 · 0 评论