admin管理员组文章数量:1344197
Is there any way to set a variable equal to a function, but instead of the variable being equal to the function it is equal to the functions return value?
Searched for a bit on this without any success, it is most likely because I don't know how to phrase the question, but any help is appreciated, this is what I have :
Instead of having to set var ztype = zoom()
after the function, is there anyway for me to assign the return value to zoom
without an extra line of code?
var zoom = function(){ //can be set to Full / percentage / Image / left empty for native image size
var type = $('.carousel').attr('data-zoom');
if(!type){
type = $(that).attr('data-zoom');
}
return type;
}
var ztype = zoom();
Is there any way to set a variable equal to a function, but instead of the variable being equal to the function it is equal to the functions return value?
Searched for a bit on this without any success, it is most likely because I don't know how to phrase the question, but any help is appreciated, this is what I have :
Instead of having to set var ztype = zoom()
after the function, is there anyway for me to assign the return value to zoom
without an extra line of code?
var zoom = function(){ //can be set to Full / percentage / Image / left empty for native image size
var type = $('.carousel').attr('data-zoom');
if(!type){
type = $(that).attr('data-zoom');
}
return type;
}
var ztype = zoom();
Share
Improve this question
asked Jun 3, 2014 at 14:58
AdjitAdjit
10.3k13 gold badges57 silver badges101 bronze badges
1
- You can define ztype as global variable, then you can access it inside the function. – D. Schalla Commented Jun 3, 2014 at 15:00
1 Answer
Reset to default 9If I'm understanding you correctly, you're trying to set a variable to the result of a function. This should do what you're hoping for;
var ztype = function(){ //can be set to Full / percentage / Image / left empty for native image size
var type = $('.carousel').attr('data-zoom');
if(!type){
type = $(that).attr('data-zoom');
}
return type;
}();
本文标签: javascriptJQuery return a function to a variableStack Overflow
版权声明:本文标题:javascript - JQuery return a function to a variable - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743738005a2530365.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论