码迷,mamicode.com
首页 > 移动开发 > 详细

Vs2013 html5开发WP8.1 APP之alert

时间:2015-04-21 14:32:27      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

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>

?

效果

?

技术分享

?

?

技术分享

?

?

技术分享

?

?

Vs2013 html5开发WP8.1 APP之alert

标签:

原文地址:http://www.cnblogs.com/QinQouShui/p/4444186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!