如何绑定onclik事件以调用函数

时间:2019-03-16 15:17:40

标签: javascript html

当有人选中复选框时,我正在尝试绑定功能。

我有这个jsfiddle可以正常工作,但是我有相同的代码,并且无法正常工作。

我已经将CDN用于JQuery和Bootstrap,希望与此无关。

在下面的代码中,即使没有完美的绑定,我也没有看到任何警报,尽管相同的代码在提到的小提琴中也能很好地工作。

HTML代码

<!DOCTYPE html>
<html>

<head>
  <title></title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- Bootstrap FILES -->
  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
  <!-- font awesome for the icons -->
  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="css/bootstrap.min.css">
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>

<body>
  <div class="container">
    <div class="row">
      <div class="col-md-12">
        <div class="text-center">
          <input type="checkbox" id='mark' name='mark'>
        </div>

      </div>
    </div>
  </div>
  <script>
    $(document).on('click', 'input[name="mark"]', function() {
      // when the checkbox is checked then do the following
      alert('thanks for checkcing me');

    });
  </script>
</body>

</html>

此代码有什么问题?如果不是,那么为什么我在选中复选框时没有收到任何警报。 请帮忙,谢谢!

1 个答案:

答案 0 :(得分:2)

检查已加载的jquery:

if (typeof jQuery == 'undefined') {  
    console.log("jQuery is not loaded");  // Or
    alert("jQuery is loaded");  
} else {
    console.log("jQuery is not loaded");
    alert("jQuery is not loaded"); 
}