我只是想问一下是否可以接受一个字符串,它总是不变的,并在其中添加一个函数的名称。一个例子:
function modifyFunctionName(theFunc)
{
var newFunc = "link" +theFunc;
return newFunc;
}
//Somewhere in the HTML:
<input type='submit' value='button' onclick='modifyFunctionName(CheckLogin())'/>
所以modifyFunctionName
将返回linkCheckLogin()
。
编辑:对不起伙计们,实际上我真正想做的是:https ://gist.github.com/2371187