gpt4 book ai didi

javascript - Visual Studio 2015 RC Cordova 应用程序(Windows Phone 通用, "alert"未定义)

转载 作者:行者123 更新时间:2023-11-29 16:58:26 26 4
gpt4 key购买 nike

我有一个基本的 Cordova 应用程序,实际上是 Visual Studio 2015 RC 的默认模板。以下不适用于 Index.html,我只添加了一个带有 onclick 事件的按钮,

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>OMFG</title>

<!-- OMFG references -->
<link href="css/index.css" rel="stylesheet" />
</head>
<body>
<p>Hello, your application is ready!</p>

<!-- Cordova reference, this is added to your app when it's built. -->
<script src="cordova.js"></script>
<script src="scripts/platformOverrides.js"></script>

<script src="scripts/index.js"></script>

<button onclick="alert('foobar!');">Do Stuff!</button>
</body>
</html>

我明白了

0x800a1391 - JavaScript 运行时错误:'alert' 未定义

知道发生了什么吗?

最佳答案

我在第一次使用 VS 2015 时遇到了同样的问题。alert 在手机上不起作用——你只需要将它替换为 notification.alert .不要忘记添加通知插件。

这是我使用的一个示例,它运行良好:

navigator.notification.alert(
'Authentification réussi !', // message
'Authentification réussi !', // title
'Authentification' // buttonName
);

关于javascript - Visual Studio 2015 RC Cordova 应用程序(Windows Phone 通用, "alert"未定义),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30215520/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com