clickevent in javascript
what 开发者_C百科is difference between onclick and onclientclick events?
The difference is that onclientclick
does not exist in Javascript.
It's an ASP.net extension. As shown in the example in MSDN's Button.OnClientClick Property page, onclientclick
will call client-side script, while onclick
will call the server-side script.
精彩评论