Javascript“预设”变量?

前端之家收集整理的这篇文章主要介绍了Javascript“预设”变量?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试声明一个变量,其值是另一个当时未设置的变量.
var add = 1 + three;
var three = 3;
document.getElementById('thediv').innerHTML = add;
//results in "NaN"

http://jsfiddle.net/seSMx/1/

有没有办法使用Jquery / Javascript来做到这一点?

解决方法

你可以把添加到一个函数,

http://jsfiddle.net/seSMx/3/

function add() {
   return 1 + (three || 0);
}

var three = 3;
document.getElementById('thediv').innerHTML = add();

虽然,在我看来这很难遵循.我会更进一步,并提出三个论点来补充

function add(three) {
   return 1 + (three || 0);
}

document.getElementById('thediv').innerHTML = add(3);
原文链接:https://www.f2er.com/js/156252.html

猜你在找的JavaScript相关文章