文字列を取得できるかどうかを尋ねたかっただけです。文字列は常に一定であり、それに関数の名前を追加します。例:
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