如何从angularjs中的相同函数调用函数?
示例:
function one(){
function two(){
//now I have to call function one()
}
}
答案 0 :(得分:1)
您可以创建另一个功能:
function one(){
function two(){
three();
}
}
function three(){
one();
}
答案 1 :(得分:0)
下面是使用递归(函数调用自身)来反转字符串的代码。
var str = 'NikhilMaheshwari';
function reverse(s) {
return (s === '') ? '' : reverse(s.substr(1)) + s.charAt(0);
};
alert(reverse(str));