是否可以在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/