Skip to content
Advertisement

How to get the value of data attribute using JQuery in asp.net core?

I want to get the value of the custom attribute by jquery. I use this code to do that but in console it show “undefined”:

JavaScript

this is the html:

JavaScript

also, I used “attr” to do that but that was the same too and shows “undefined”. And I don’t want to use “id” for the selector. I want it to show 3 as it is in “@classCorrect.Answer”.

Advertisement

Answer

If there are serverl divs with the data-correct attribute, you should give them the same class or name

Such as:

JavaScript

And when you use the class or name selector, the result is an array of these elements, you should traverse it to get each element then get its attribute value.

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement