I use underscores all the time, due to hyphens messing up the syntax highlighting of my text editor (Gedit). Yes, I'm that anal.
As for your question, I don't really think there is a standard. I've seen all these conventions used all over the place. Use the one that you think is best - the one that looks nicest/easiest to read for you, as well as easiest to type because you'll be using a lot of them! For example, if you've got your underscore key on the underside of the keyboard (unlikely, but entirely possible), then stick to hyphens. If you see my point. Just go with what is best for yourself; all 3 of these conventions are easily readable. If you're going to be using a lot of long identifiers, I'd recommend the camel case (first) convention - it saves space and looks neater.
Update 2012
I've changed how I program over time. I now use camel case (thisIsASelector) instead of hyphens now; I find the latter rather ugly. Use whatever you prefer, which may easily change over time.
Update 2013
It looks like I like to mix things up yearly... After switching to Sublime Text and using Bootstrap for a while, I've gone back to dashes. To me now they look a lot cleaner than underscores or camelCase. My original point still stands, though: there isn't a standard.