Binding an existing JavaScript function in jQuery
问题 Using jQuery I want to bind an existing function to a button. I've been through the documentation and have found the bind method but the examples on the jQuery bind newly created functions where as I want to bind a function that's already hard coded, e.g: function fHardCodedFunction(){ //Do stuff } function fBindFunctionToElement(){ $("#MyButton").bind("click", fHardCodedFunction()); } Is this possible? Or am I going about this the wrong way? 回答1: The plain fHardCodedFunction already refers