记录下mainfest.json 原生标题的按钮监听

首先在mainfest.json中 plus下添加以下代码

"launchwebview": {
"titleNView": {
"backgroundcolor": "#D74B28",
"titletext": "首页",
"titlecolor": "#ffffff",
"buttons": [
{
"text": "注册",
"fontSize": "16px",
"float": "right",
"onclick": "javascript:plus.nativeUI.alert('clicked!')"
}
]
}

然后需要在页面上覆盖掉buttons事件
let titleNView = plus.webview.currentWebview();
titleNView.setStyle({
titleNView: {
titleText: name,
titleColor: "#ffffff",
backgroundColor: "#D74B28",
buttons: [
{ text: "注册",fontSize:"16px", float: "right", onclick:()=>{
alert("这是覆盖点击事件后的点击事件");
} }
],
}
});

posted @ 2019-02-26 10:37  cxf2018  阅读(382)  评论(0编辑  收藏  举报