0

是否可以比较jQuery中的属性值?

例子

if( $(this).[ attribute value ] == "0")
{}
else
{}
4

4 回答 4

5

您可以使用attr方法获取属性值:

if ($(this).attr("myAttr") == "0") {
    // "myAttr" value is "0"
} else {
    // "myAttr" value is not "0"
}
于 2012-06-15T14:00:42.723 回答
1
if($(this).attr("yourAttribute") == "0"){
    //do something
}
于 2012-06-15T14:00:44.177 回答
1

试试这个

if( $(this).attr('myattribute') == "0")    
{
   //Your statements
}    
else    
{
   //Your statements
}
于 2012-06-15T14:01:23.403 回答
0

您可以使用该方法获取属性值attr并进行比较:

if ($(this).attr("attrname") == "0") {
  $(this).css('background', 'red');
}

您还可以使用选择器过滤掉具有特定属性值的元素:

$(this).filter('[attrname=0]').css('background', 'red');
于 2012-06-15T14:06:27.443 回答