ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ /** * 蜂鸣提示音 * */ switch ( plus.os.name ) { case "iOS": if ( plus.device.model.indexOf("iPhone") >= 0 ) { plus.device.beep(); } else { mui.alert('此设备不支持蜂鸣'); } break; default: plus.device.beep(); break; } ~~~ ~~~ /** * 手机震动 * */ switch ( plus.os.name ) { case "iOS": if ( plus.device.model.indexOf("iPhone") >= 0 ) { plus.device.vibrate(); } else { mui.alert('此设备不支持震动'); } break; default: plus.device.vibrate(); break; } ~~~