zoukankan      html  css  js  c++  java
  • Vs2013 html5开发WP8.1 APP之alert

    Js的alert不被支持

    使用

    navigator.notification.alert

    需要在CONFIG中增加

     

     

    示例

     

    1. <script type="text/javascript">
    2.         function showAlert() {
    3.             navigator.notification.alert(
    4.                 'You are the winner!', // message
    5.                 null, // callback
    6.                 'Game Over', // title
    7.                 'Done' // buttonName
    8.             );
    9.         };
    10.         function testStorage() {
    11.             if (window.localStorage) {
    12.                 navigator.notification.alert('浏览器支持localStorage', showAlert, "Config", "OK");
    13.             } else {
    14.                 navigator.notification.alert("浏览器暂不支持localStorage", null, "Config", "OK");
    15.             }
    16.             if (window.sessionStorage) {
    17.                 navigator.notification.alert("浏览器支持sessionStorage", null, "Config", "OK");
    18.             } else {
    19.                 navigator.notification.alert("浏览器暂不支持sessionStorage",null,"Config","OK")
    20.             }
    21.         }
    22.     </script>

     

    效果

     

     

     

     

     

     

     

  • 相关阅读:
    TP5.1 路由验证器验证返回json提示
    win10 docker ubuntu14.04 php 编译安装 php7.3.20
    ubuntu15.10 sources.list 修改
    秒杀系统设计
    class命名规范
    php实现阿里云签名类
    【小程序】应用的生命周期,页面的生命周期
    php.ini配置文件参数中文说明文档
    tp5.1 nginx配置
    phpstudycomposer thinkPHP5.1 使用
  • 原文地址:https://www.cnblogs.com/QinQouShui/p/4444186.html
Copyright © 2011-2022 走看看