admin管理员组文章数量:1344302
I'm sure this is really simple and I'm drawing a giant blank, but how do you set the result of a function as a global variable?
Example, I want to set the first "color" in array "colors" as global variable "color" (I know the example doesn't make much practical sense, but it's just to illustrate my question):
var color = "";
function selectColor () {
var colors = ["blue","red","green","yellow"];
var color = colors[0];
return color;
}
window.onload = function () {
selectColor ();
alert(color);
}
I'm sure this is really simple and I'm drawing a giant blank, but how do you set the result of a function as a global variable?
Example, I want to set the first "color" in array "colors" as global variable "color" (I know the example doesn't make much practical sense, but it's just to illustrate my question):
var color = "";
function selectColor () {
var colors = ["blue","red","green","yellow"];
var color = colors[0];
return color;
}
window.onload = function () {
selectColor ();
alert(color);
}
Share
Improve this question
asked Mar 25, 2010 at 15:09
ChoyChoy
2,11711 gold badges39 silver badges49 bronze badges
3 Answers
Reset to default 5It should work for you if you remove the var
declaration from color
in the selectColor()
function, like this:
var color = "";
function selectColor () {
var colors = ["blue","red","green","yellow"];
color = colors[0];
return color;
}
window.onload = function () {
selectColor ();
alert(color);
}
var color = "";
function selectColor() {
var colors = ["blue","red","green","yellow"];
var color = colors[0];
return color;
}
window.onload = function() {
color = selectColor();
alert(color);
}
Answering to your question:
var color = "";
function selectColor () {
var colors = ["blue","red","green","yellow"];
color = colors[0];
}
window.onload = function () {
selectColor ();
alert(color);
}
- The var keyword creates a local variable inside selectColor(); you don't want that.
- The return statement is not necessary; you don't capture it.
In any case, in this exact example it'd be cleaner to do this:
var color = "";
function selectColor () {
var colors = ["blue","red","green","yellow"];
return colors[0];
}
window.onload = function () {
color = selectColor ();
alert(color);
}
本文标签: javascriptHow to set result of function as global variableStack Overflow
版权声明:本文标题:javascript - How to set result of function as global variable - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743764294a2534954.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论