去掉uniapp程序中顶部返回按钮

发布时间 2023-11-20 19:42:29作者: 张尊娟

去掉uniapp程序中顶部返回按钮
1.javascript "autoBackButton": false
在小程序下生效,H5不生效

       {
            "path": "pages/donation/list",
            "style": {
                "navigationBarTitleText": "公益捐款",
                "app-plus": {
                    "titleNView": {
                        "autoBackButton": false    //h5不生效
                    }
                }
            }
    

        },

但是这个在H5下面是不生效的,h5需要这样写

   // #ifdef H5
            // 关闭左侧返回箭头
            var a = document.getElementsByClassName('uni-page-head-hd')[0]
            a.style.display = 'none';
   // #endif        

去掉整个顶部导航栏

            "app-plus": {
                    "titleNView": false
                }

        {
            "path": "pages/donation/list",
            "style": {
                "navigationBarTitleText": "公益捐款",
                "app-plus": {
                    "titleNView": false
                }
            }
    

        },