vote up 4 vote down star
2

I'm trying to figure out how to pass arguments to an anonymous function in JavaScript.

Check out this sample code and I think you will see what I mean:

<input type="button" value="Click me" id="myButton" />

<script type="text/javascript">

	var myButton = document.getElementById("myButton");

	var myMessage = "it's working";

	myButton.onclick = function(myMessage) { alert(myMessage); };


</script>

When clicking the button the message "it's working" should appear... but the myMessage-variable inside the anonymous function is null.

This problem becomes much more evident when using jQuery since it uses a lot of anonymous functions.

How can I do this?

flag

80% accept rate

8 Answers

vote up 9 vote down check

Your specific case can simply be corrected to be working:

<script type="text/javascript">

        var myButton = document.getElementById("myButton");

        var myMessage = "it's working";

        myButton.onclick = function() { alert(myMessage); };

</script>

This example will work because the anonymous function created and assigned as a handler to element will have access to variables defined in the context where it was created.

For the record, a handler (that you assign through setting onxxx property) expects single argument to take that is event object being passed by the DOM, and you cannot force passing other argument in there

link|flag
vote up 2 vote down

Event handlers expect one parameter which is the event that was fired. You happen to be renaming that to 'myMessage' and therefore you are alerting the event object rather than your message.

A closure can allow you to reference the variable you have defined outside the function however if you are using Jquery you may want to look at its event specific API e.g.

http://docs.jquery.com/Events/bind#typedatafn

This has an option for passing in your own data.

link|flag
vote up 0 vote down

The delegates:

function displayMessage(message, f)
{
    f(message); // execute function "f" with variable "message"
}

function alerter(message)
{
    alert(message);
}

function writer(message)
{
    document.write(message);
}

Running the displayMessage function:

function runDelegate()
{
    displayMessage("Hello World!", alerter); // alert message

    displayMessage("Hello World!", writer); // write message to DOM
}
link|flag
vote up 1 vote down

Example:

<input type="button" value="Click me" id="myButton">
<script>
    var myButton = document.getElementById("myButton");
    var test = "zipzambam";
    myButton.onclick = function(eventObject) {
        if (!eventObject) {
            eventObject = window.event;
        }
        if (!eventObject.target) {
            eventObject.target = eventObject.srcElement;
        }
        alert(eventObject.target);
        alert(test);
    };
    (function(myMessage) {
        alert(myMessage);
    })("Hello");
</script>
link|flag
One change: eventObject = eventObject || window.event; One more change: eventObject = eventObject || window.event || {}; – eyelidlessness Oct 22 '08 at 9:10
Another change: eventObject.target = eventObject.target || eventObject.srcElement || null; – eyelidlessness Oct 22 '08 at 9:11
vote up 0 vote down

If you write it like

myButton.onclick = function() { alert(myMessage); };

It will work, but I don't know if that answers your questions.

link|flag
vote up 0 vote down

What you have done is created a new anonymous function that takes a single parameter which then gets assigned to the local variable myMessage inside the function. Since no arguments are actually passed, and arguments which aren't passed a value become null, your function just does alert(null).

link|flag
vote up 6 vote down

What you've done doesn't work because you're binding an event to a function - as such it's the event which defines the parameters that will be called when the event is raised (i.e. javascript doesn't know about your parameter in the function you've bound to onclick so can't pass anything into it).

You could do this however:

<input type="button" value="Click me" id="myButton" />

<script type="text/javascript">

        var myButton = document.getElementById("myButton");

        var myMessage = "it's working";

        var myDelegate = function(message) {
            alert(message);
        }

        myButton.onclick = function() { 
            myDelegate(myMessage);
        };


</script>
link|flag
vote up 4 vote down

By removing the parameter from the anonymous function will be available in the body.

    myButton.onclick = function() { alert(myMessage); };

For more info search for 'javascript closures'

link|flag
I needed to read up on "javascript closures" as you stated.. Thanks! – hakksor Oct 22 '08 at 8:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.