1 Star 0 Fork 0

MRF/ Notes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
js 380 Bytes
一键复制 编辑 原始数据 按行查看 历史
MRF 提交于 2021-06-02 17:17 . update
var maxNum = 100;
var minNum = 1;
parseInt(Math.random()*(maxNum-minNum+1)+minNum,10)
var userAgent = window.navigator.userAgent.toUpperCase();
/**
* 获取系统名称,安卓或者ios
*/
function getOS() {
if (userAgent.indexOf("ANDROID") > -1) {
return "ANDROID";
} else if (userAgent.indexOf("IPHONE") > -1){
return "IOS";
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/MRFZone/notes.git
git@gitee.com:MRFZone/notes.git
MRFZone
notes
Notes
master

搜索帮助