Home  >  Article  >  Web Front-end  >  Introduction to how to use phonegap (9) Four ways to perform prompt operations

Introduction to how to use phonegap (9) Four ways to perform prompt operations

零下一度
零下一度Original
2017-05-03 10:28:441471browse

The following editor will bring you a specific method of using phonegap to perform prompt operations. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look.

There are often four ways:

<!DOCTYPE html> 
<html> 
  
    <head> 
        <meta charset="UTF-8"> 
        <title>Notifications</title> 
  
        <script type="text/javascript" charset="UTF-8" src="cordova.js"></script> 
        <script type="text/javascript" charset="UTF-8"> 
          document.addEventListener("deviceready", onDeviceReady, false); 
            function onDeviceReady() { 
                checkConnection(); 
            } 
              
            //显示自定义的警告 
            function showAlert(){ 
                navigator.notification.alert(&#39;Game Over!&#39;,alertCallback,&#39;Game Over!&#39;,&#39;Done&#39;); 
            } 
            //警告的回调 
            function alertCallback(){ 
                  
            } 
              
            //显示一个自定义的确认对话框 
            function showConfirm(){ 
                navigator.notification.confirm(&#39;Game Over!&#39;,onConfirm,&#39;Game Over!&#39;,&#39;Restart,Exit&#39;); 
            } 
            //确认对话框的回调 
            function onConfirm(button){ 
                alert(&#39;You selected button &#39;+button); 
            } 
              
            //鸣叫两次 
            function playBeep(){ 
                navigator.notification.beep(2); 
            } 
              
            //振动 
            function vibrate(){ 
                navigator.notification.vibrate(4000); 
            } 
              
        </script> 
    </head> 
  
    <body onload="onLoad()"> 
        <p><a href="#" onclick="showAlert(); return false;">Show Alert</a></p> 
        <p><a href="#" onclick="showConfirm(); return false;">Show Confirmation</a></p> 
        <p><a href="#" onclick="playBeep() return false;">Play Beep</a></p> 
        <p><a href="#" onclick="vibrate() return false;">Vibrate</a></p> 
    </body> 
  
</html>

The above is the detailed content of Introduction to how to use phonegap (9) Four ways to perform prompt operations. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn