输入按钮的事件监听器

时间:2015-11-03 20:29:59

标签: jquery input event-listener

您好我正在尝试使用js将一个事件监听器添加到输入按钮,但它不起作用。

这是我的HTML代码:

<div class="cc-controls u-clearfix">
  <input class="primary confirm js-add-card" type="submit" value="Add">
  <a class="icon-lg icon-close dark-hover js-cancel" href="#"></a>
  <a class="cc-opt icon-lg icon-dropdown-menu dark-hover js-cc-menu" href="#"></a>
</div>

我的js代码:

$(document).ready(function() {
  $('.js-add-card').click(function() {
      alert('hello');
  }); 
});

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

$(document).ready(function() {
  $('input[class*=js-add-card]').click(function() {
      alert('hello');
  }); 
});

http://jsfiddle.net/rjLrmhL2/