English 中文(简体)
jquery using object literal over multiple files
原标题:

I ve seen object literal examples and they look really nice and sensible. What I want to know is if it s possible to use object literal over multiple files, because all the examples I ve seen had only 1 file.

Thanks.

最佳回答

At the top of each file you check to see if the object already exists.. if it does, then use the existing object.. if not then create a new object so you re not trying to work on an undefined variable.

var object = object || {}

object.doStuff = function () {}
问题回答

If you mean in web browsers, file scope is meaningless (unless you use WebWorkers, but I doubt you re at that stage yet). When you declare a global variable, it s available to all .js files you include in your html page. It doesn t matter if it s an object literal, function, string or whatever.

Functions/methods however do have their own scope, so if you declare variables inside a function, it s not global and thus not available to other code.

If that does not awnser your question, please be a bit more specific ;)





相关问题
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.

热门标签