作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚开始学习网络开发并决定制作一个简单的 apache cordova 应用程序,但由于某种原因我的 for 循环没有启动。
index.js:
(function () {
"use strict";
document.addEventListener( 'deviceready', onDeviceReady.bind( this ), false );
renderList();
function renderList()
{
console.log("renderlist")
for (i = 0; i < 5; i++) {
console.log("for loop")
}
}
function onDeviceReady() {
//default apache cordova stuff
};
在javascript控制台我只得到“renderlist”,但没有“for loop”或“end”
最佳答案
你需要声明我。
for (var i = 0; i < 5; i++)
关于javascript - For 循环不开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43953131/
我是一名优秀的程序员,十分优秀!