English 中文(简体)
自动执行 Javascript 函数, 稍后再给他们打电话吗?
原标题:Auto-execute javascript functions AND call them later?

我在许多地方读到,

$(function() {
    // code...
});

var myFunc = function() {
   // code...
}();

我的问题是,你以后如何称呼这些功能?因为简单的宣言

function myFunc() {
    // code...
}

可以很容易地被回忆, 但不会自动启动 。 我不得不手动在加载时给它们打电话, 而那很烦人, 占用代码中的空格, 如果我忘记了, 它可能是一个错误源 。

如果你不明白我的解释,这里举一个例子:

I have a "weight" and a "height" field in my form, and i need to calculate the BMI (Body Mass Index). When the page loads, the weight and height are filled by the database, then i launch the calculation when everything s ready. But later, if the user changes the weight or the height, the BMI have to recalculate immediately. What s the best way to do that ? Using jquery or pure JS, I don t mind.

谢谢

最佳回答

一个可重复使用的即时功能

var reference = (function thename(){

    //function body

    return thename; //return the function itself to reference

}()); //auto-run


reference(); //call it again
reference(); //and again

请注意,调用此函数返回您刚才调用的函数的引用。

var anotherReference = reference(); //anotherReference === reference
问题回答

暂无回答




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签