页面指定区域
// 测试代码
function getClientType () {
if (this.isMobile()) {
if (this.isWeixin()) {
return {
type: "weixin",
name: "微信"
};
} else {
return {
type: "mobile",
name: "移动端"
};
}
} else {
return {
type: "pc",
name: "PC端"
};
}
}