本文介绍了对象内的函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道标题含糊不清但我不知道该写什么。
在javascript中,我知道如何编写将被调用的函数:
I know the title is vague but I didn't know what to write.
In javascript, I know how to write functions that will be called like this :
argument1.function(argument2);
这是小提示演示:
现在我想知道我能否做到:
Here is the fiddle demonstration : http://jsfiddle.net/rFXhf/
Now I wonder if I can do :
argument1.argument2.function(argument3);//And even more!
推荐答案
你需要定义这样的对象:
you need to define the objects like this :
var argument1 = {
myvar : "12",
mymethod : function(test) { return something; }
}
然后调用mymethod,如:
then call mymethod like:
argument1.mymethod(parameter);
或更深版本:
var argument1 = {
argument2 : {
mymethod : function(test) { return something; }
}
}
然后:
argument1.argument2.mymethod(parameter);
这篇关于对象内的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!