微端全屏打开页面的规则是什么?
whh8162880 opened this issue · 3 comments
whh8162880 commented
微端全屏打开页面的规则是什么?
ximenpo commented
if(typeof(window.external) == 'object'){
try{
if(window.external.IsGameLoader){
window.external.LoadGame(url, title);
return;
}
}catch(e){
}
}
其中,IsGameLoader 和 LoadGame 这俩名字可以在配置文件中自行定义和修改,参考 bin/wgloader.ini 。
whh8162880 commented
谢谢! 搞定了 很好用~!
ximenpo commented
👌