var embed=plus.webview.create(urls,'embed',{top:'45px',bottom:'0px'});//创建页面
ws.append(embed);
embed.addEventListener('loaded',function(){ //监听页面,当页面加载完成时
plus.nativeUI.closeWaiting();
},false);
embed.addEventListener('loading',function(){//监听页面,当页面加载时
plus.nativeUI.showWaiting('',{style:'black',modal:false,background:'rgba(0,0,0,0)'});
},false);
网友评论