.zhezao{
position:fixed;
width:100%;
height:100%;
top:0px;
background:rgba(0,0,0,0.4);
overflow: hidden;
}
当 display: flex 配合 justify-content: center 使用时可以让view水平居中
而配合 align-items: center 用时可以实现垂直居中效果
字符串转对象
var m_Data= JSON.parse(m_Str);
对象转字符串
var m_Str= JSON.stringify(m_Data);