|
|
@@ -153,17 +153,17 @@
|
|
|
|
|
|
// Android 检测
|
|
|
if (/android/i.test(userAgent)) {
|
|
|
- window.location.href = 'https://play.google.com/store/apps/details?id=com.pcoloring.art.puzzle.color.by.number';
|
|
|
+ window.open('https://play.google.com/store/apps/details?id=com.pcoloring.art.puzzle.color.by.number', '_blank');
|
|
|
}
|
|
|
// iOS 检测
|
|
|
else if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {
|
|
|
- window.location.href = 'https://apps.apple.com/gb/app/art-number-coloring-book/id1575480118';
|
|
|
+ window.open('https://apps.apple.com/gb/app/art-number-coloring-book/id1575480118', '_blank');
|
|
|
}
|
|
|
// 其他操作系统(例如桌面)
|
|
|
else {
|
|
|
// 可以显示一个提示,或者跳转到通用的下载页面
|
|
|
console.log('无法确定操作系统,或者为桌面操作系统');
|
|
|
- window.location.href = 'https://pcoloring.com/anc/';
|
|
|
+ window.open('https://pcoloring.com/anc/', '_blank');
|
|
|
}
|
|
|
});
|
|
|
|