javascript - className 的存在阻止调用 onClick 处理程序

标签 javascript css reactjs

我有一个简单的 React 组件:

class FilterCheckBox extends React.Component {

  clickCheckBox(e) {
    console.log('clicked on checkbox');
  }

  render(){

    return (
      <div>
        <a className="filter-checkbox" onClick={this.clickCheckBox.bind(this)}>
          <span>{this.props.area.key}</span>
          <span>{this.props.area.doc_count}</span>
        </a>
      </div>
    )
  }
}

使用上面指定的类名,永远不会调用 onClick 处理程序。但是,如果我删除 className 声明,则 onClick 可以正常工作。

类添加的样式有:

.filter-checkbox,
.filter-checkbox:link,
.filter-checkbox:visited,
.filter-checkbox:focus {
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  color: #546e7a;
  text-transform: uppercase;
  text-decoration: none;
  font: normal normal 700 0.875em/1.2em "Oxygen", sans-serif;
  /*14px*/
  outline: none;
  position: relative;
  display: block;
  margin-bottom: 10px;
}
/* line 330, ../scss/partials/_reusables.scss */
.filter-checkbox:before,
.filter-checkbox:link:before,
.filter-checkbox:visited:before,
.filter-checkbox:focus:before {
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  content: '';
  background: #ffffff;
  border: 1px solid #cfd8dc;
  color: #007cba;
  clear: none;
  cursor: pointer;
  display: inline-block;
  height: 15px;
  line-height: 0;
  width: 15px;
  outline: none;
  vertical-align: middle;
  margin: -3px 10px 0 0;
}
/* line 347, ../scss/partials/_reusables.scss */
.filter-checkbox:after,
.filter-checkbox:link:after,
.filter-checkbox:visited:after,
.filter-checkbox:focus:after {
  display: none;
  content: '\f00c';
  color: #ffffff;
  font: normal normal 400 11px/11px FontAwesome;
  position: absolute;
  top: 2px;
  left: 2px;
}
/* line 356, ../scss/partials/_reusables.scss */
.filter-checkbox:hover,
.filter-checkbox:link:hover,
.filter-checkbox:visited:hover,
.filter-checkbox:focus:hover {
  color: #50d583;
  text-decoration: none;
}
/* line 361, ../scss/partials/_reusables.scss */
.filter-checkbox.active:before,
.filter-checkbox:link.active:before,
.filter-checkbox:visited.active:before,
.filter-checkbox:focus.active:before {
  border: 1px solid #50d583;
  background: #50d583;
}
/* line 365, ../scss/partials/_reusables.scss */
.filter-checkbox.active:after,
.filter-checkbox:link.active:after,
.filter-checkbox:visited.active:after,
.filter-checkbox:focus.active:after {
  display: block;
}

我在这里看不到任何可以阻止事件传播的东西,所以一定有什么我只是没有正确理解......?

最佳答案

事实证明,这是由另一个脚本引起的,该脚本使用 jquery 捕获点击事件以定位特定的类名。

通过一个排除的过程发现——首先排除所有脚本并恢复,直到问题再次出现。然后检查问题脚本,直到找到有问题的行。

感谢您的回复。

关于javascript - className 的存在阻止调用 onClick 处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34214728/

相关文章:

javascript - 从另一个函数设置组件的状态

javascript - 使用 Vue.js 应用条件 CSS 类时出现问题

javascript - $(iframe) 显示 null,检查 iframe 后显示对象,

html - IE 中表格单元格中的垂直文本

html - 如何使用 CSS 为 HTML 表单中的单选按钮制作多行、垂直和水平对齐的标签?

javascript - 将事件的 css 类应用于当前 url

javascript - 如何计算网页上的唯一访问者

javascript - apple “The 50 Billion Apps Countdown Promotion” 这个js代码有什么意义?

JavaScript 上午/下午时间比较

javascript - 无法在 react 中设置背景图片?