I'm working on a web app that uses javascript to change the classes of 3 div's depending on what buttons the user has pressed.
Is it possible to get the value of the current class of a div?
I tried adding runat="server" to the div tag and then using...
thediv.Attributes.CssStyle.Value
... to get the value of the class.
But it is returning nothing.
Any ideas? So you're trying to do this servers-side? If all you're doing is changing the classes of divs based on buttons, [jQuery makes this a snap.][1] [1]: docs.jquery.com/Tutorials
以上就是Get Class of a DIV through VB.net的详细内容,更多请关注web前端其它相关文章!