作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想通过添加类“noEdit”从 .click 函数中排除 DOM 元素,我遇到的问题是其中一些元素具有多个类,即:
<td class="firstCol noEdit"> // <-- wont work
<td class="noEdit"> // <-- works fine
还有 jQuery:
$('td').click( function(){
if($(this).attr('class') != "noEdit"){
alert('do the function');
});
想法?
最佳答案
如果查询class
属性为 attr()
,它只是将值作为单个字符串返回。然后,您的第一个 <td>
的条件就会失败。因为您的代码将尝试比较
"firstCol noEdit" != "noEdit"
返回 true(因为它们不相等)并导致显示警报。
您需要查看 hasClass()
相反,它会为您解析类列表并检查属性中是否存在给定类:
$('td').click(function() {
if (!$(this).hasClass("noEdit")) {
alert('do the function');
}
});
关于由于多个类,jQuery 和 If 语句不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3693351/
我是一名优秀的程序员,十分优秀!