我有一个带有一些简单事件处理的 JQuery 选择器。
jQuery('.ui-jqgrid-sdiv td[aria-describedby*="SUM"]').click(function(event) {alert('SUM=')});
现在,我想找到该aria-describedby
属性的确切值。这可以说
SUM_1
SUM_2
SUM_3
SUM_4
任何提示我如何做到这一点?
谢谢。
By using .attr() you can get it
try this
$('.ui-jqgrid-sdiv td[aria-describedby*="SUM"]').click(function(event){
alert($(this).attr('aria-describedby'));
});
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'));
});