isClientInstalled
isClientInstalled 方法用于判断用户的电脑系统中是否安装了PageOffice客户端程序。
语法:
let value = POBrowser.isClientInstalled();
示例:
if (POBrowser.isClientInstalled()) {
console.log('PageOffice客户端已安装');
} else {
console.log('PageOffice客户端未安装');
}