6

我有一个带有一些简单事件处理的 JQuery 选择器。

jQuery('.ui-jqgrid-sdiv td[aria-describedby*="SUM"]').click(function(event) {alert('SUM=')}); 

现在,我想找到该aria-describedby属性的确切值。这可以说

SUM_1
SUM_2
SUM_3
SUM_4

任何提示我如何做到这一点?

谢谢。

4

2 回答 2

9

By using .attr() you can get it

try this

$('.ui-jqgrid-sdiv td[aria-describedby*="SUM"]').click(function(event){
   alert($(this).attr('aria-describedby'));
}); 
于 2013-04-19T11:45:48.997 回答
4

if you need that inside the click event then use $(this) and .attr()

try this

jQuery('.ui-jqgrid-sdiv td[aria-describedby*="SUM"]').click(function(event){
   alert($(this).attr('aria-describedby'));
}); 
于 2013-04-19T11:45:35.900 回答