使用Appcan遇到的问题

 视频直播

var params = {url: 'url',bgImage:"res://companyLogo.png"};
                uexTencentLVB.livePlay(JSON.stringify(params));

目录

 appcan b.html跳转到 c.html 并且刷新 c.html或者在c.html做其他操作

b.html


appcan.window.open('login', 'c.html', 10);
setTimeout("appcan.window.evaluateScript('login','refresh()')",500) ;

c.html

function refresh() {
    $("#psd").val("");
    $("#phone").val();
    window.location.reload();
}

猜你喜欢

转载自blog.csdn.net/voidL123/article/details/82787659