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



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

最佳答案

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

if ($(this).attr("myAttr") == "0") {
    // "myAttr" value is "0"
} else {
    // "myAttr" value is not "0"
}

关于javascript - 如何比较属性值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11052101/

10-11 11:22