gpt4 book ai didi

javascript - 莫纳卡 JavaScript 不工作

转载 作者:行者123 更新时间:2023-12-03 04:45:34 25 4
gpt4 key购买 nike

我有以下代码,显示的简单 js 不起作用。如何让js在monaca中工作?

这是我正在做的事情的代码。

顺便说一句,我已经从配置屏幕添加了 jQuery(Monaca 版本)版本:2.0.3。

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="Content-Security-Policy" content="default-src * data:; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'">
<script src="components/loader.js"></script>
<script src="lib/onsenui/js/onsenui.min.js"></script>

<link rel="stylesheet" href="components/loader.css">
<link rel="stylesheet" href="lib/onsenui/css/onsenui.css">
<link rel="stylesheet" href="lib/onsenui/css/onsen-css-components.css">
<link rel="stylesheet" href="css/style.css">

<script>
//this starts the count down.
//time should be in seconds
function countDown(time){
$("#countDown").txt(time);
var timeout=setTimeout(function(){
time--;
$("#countDown").txt(time);
if(time==0) clearTimeout(timeout);
}, 1000);
}

ons.ready(function() {
countDown(10);
});

</script>
</head>
<body>
<div id="countDown"></div>
</body>
</html>

最佳答案

从我在您的代码中看到的内容来看,您在分配 time 的值时犯了一个拼写错误。变量为 <div>元素。它不是$("#countDown").txt(time); ,是$("#countDown").text(time); .

另外,从你的函数名称来看 - countdown我猜您正在尝试创建一个出现在屏幕上的计数器。在这种情况下,您不应使用 setTimeout(function, period)函数,因为 this 用于调用作为其参数传递的函数,仅在句点(作为第二个参数传递)通过后调用一次。因此,您应该使用setInterval(function(),period)函数,每次经过一段时间后都会调用该函数。因此,您应该使用 clearInterval()而不是clearTimeout() .

您的代码应如下所示:

<script>
//this starts the count down.
//time should be in seconds
function countDown(time){
$("#countDown").text(time);
var timeout=setInterval(function(){
time--;
$("#countDown").text(time);
if(time==0) clearInterval(timeout);
}, 1000);
}

ons.ready(function() {
countDown(10);
});
</script>

关于javascript - 莫纳卡 JavaScript 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42883926/

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