Wechat official account web page custom header

clipboard.png
there is always this header when debugging tools with official accounts. Xiaobai would like to ask, can this be customized?


this is provided by Wechat and cannot be customized. The middle title is taken from the title tag of your html


that is, if you want to modify the title, of your html, you can document.title = "123"


.

if it is WeChat Mini Programs,
create a new JSON file under the folder corresponding to the current page and add the following configuration

{  
  "navigationBarTitleText": ""  
}  

can be customized, the content of title can be changed manually, or the js of children's shoes upstairs can be changed

Menu