Is it possible to have an event that fires when the value of a certain variable changes? Thanks!
|
Yes, |
|||||||||||||||
|
|
No. But, if it's really that important, you have 2 options (first is tested, second isn't): First, use setters and getters, like so:
then you can do something like:
then set the listener like:
Second, I actually forgot, I'll submit while I think about it :) EDIT: Oh, I remember :) You could put a watch on the value: Given myobj above, with 'a' on it:
|
|||||||||
|
|
As Luke Schafer's answer (note: this refers to his original post; but the whole point here remains valid after the edit), I would also suggest a pair of Get/Set methods to access your value. However I would suggest some modifications (and that's why I'm posting...). A problem with that code is that the field
EncapsulationSo, to guarantee that the listeners are actually called, we would have to prohibit that direct access to the field
Now you can use the same method to create and add the listeners as Luke proposed, but you can rest assured that there's no possible way to read from or write to Adding encapsulated fields programmaticallyStill on Luke's track, I propose now a simple way to add encapsulated fields and the respective getters/setters to objects by the means of a simple function call. Note that this will only work properly with value types. For this to work with reference types, some kind of deep copy would have to be implemented (see this one, for instance).
This works the same as before: we create a local variable on a function, and then we create a closure. How to use it? Simple:
|
|||||
|
|
Sorry to bring up and old threat, but here is a little manual for them who (like me!) don't see how Eli Grey's example works:
Hope this can help someone |
|||
|
|
|
If you're using jQuery {UI} (which everyone should be using :-) ), you can use .change() with a hidden <input/> element. |
|||||
|
|
For those tuning in a couple years later: A solution for most browsers (and IE6+) is available that uses the onpropertychange event and the newer spec defineProperty. The slight catch is that you'll need to make your variable a dom object. Full details: http://johndyer.name/native-browser-get-set-properties-in-javascript/ |
|||
|
|
|
Not directly: you need a pair getter/setter with an "addListener/removeListener" interface of some sort... or an NPAPI plugin (but that's another story altogether). |
|||
|
|
|
I guess you could use some getter and setter methods for the variable and fire the event there. |
|||
|
|
