How do I get the value of the cell with class EventAddress using jquery?
相关标签:
-
2020-12-12 06:12
If you with "value" mean the content of the td-element, then you could do:
$(".EventAddress").text();
-
2020-12-12 06:23
alert($('.EventAddress').html());
Basic example: http://jsfiddle.net/LMBsc/