Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了一个简单的聊天室。代码如下。当用户收到消息时,我想使用 apache cordova 使设备振动。我怎样才能实现这个?
http://pastie.org/5085307
代码在那个链接。我已经包含了振动代码和聊天室代码。
您可能希望在应用程序的第 83 行调用 navigator.notification.vibrate(2000)。您还需要在头中包含cordova 的脚本标签,否则它将不起作用。无需将 navigator.notification.vibrate(2000) 包装在 onDeviceReady 内部的振动函数中。