Vs2013 html5开发WP8.1 APP之alert
Js的alert不被支持
使用
navigator.notification.alert
需要在CONFIG中增加
?
?
示例
?
- <script type="text/javascript">
- ????????function showAlert() {
- ????????????navigator.notification.alert(
- ????????????????‘You are the winner!‘, // message
- ????????????????null, // callback
- ????????????????‘Game Over‘, // title
- ????????????????‘Done‘ // buttonName
- ????????????);
- ????????};
- ????????function testStorage() {
- ????????????if (window.localStorage) {
- ????????????????navigator.notification.alert(‘浏览器支持localStorage‘, showAlert, "Config", "OK");
- ????????????} else {
- ????????????????navigator.notification.alert("浏览器暂不支持localStorage", null, "Config", "OK");
- ????????????}
- ????????????if (window.sessionStorage) {
- ????????????????navigator.notification.alert("浏览器支持sessionStorage", null, "Config", "OK");
- ????????????} else {
- ????????????????navigator.notification.alert("浏览器暂不支持sessionStorage",null,"Config","OK")
- ????????????}
- ????????}
- ????</script>
?
效果
?
?
?
?
?
?
?
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。