2

我正在尝试将事件归因于我的引导表的不同列的单元格。

问题是:虽然我为每列设置了一个类,但不会触发归因于该类的事件。我仍然尝试为单元格中添加的每个 div 设置一个类,但它的事件也没有被触发。

那么,如何使用引导表获取 td 事件?

4

3 回答 3

1

在你向我们展示一些代码之前,你可以试试这个,

$('body').on('click', '#tableID tr td', function(){
  //whenever any td is clicked, this function will get called
});

您可以更改'click'要绑定 td 的任何事件名称。

我将事件委托给正文,因为如果您将表格元素动态添加到 html,直接绑定到这些事件将不会触发/工作。

于 2015-07-24T18:30:24.273 回答
1

这是引导表的 td 点击事件的完整代码

$(document).ready(function(){
  $('table td').click(function(){
     alert($(this).html());
  });
  
  });
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  
  <p>Click on the td below</p>            
  <table class="table">
    <thead>
      <tr>
        <th>Firstname</th>
        <th>Lastname</th>
        <th>Email</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>John</td>
        <td>Doe</td>
        <td>john@example.com</td>
      </tr>
      <tr>
        <td>Mary</td>
        <td>Moe</td>
        <td>mary@example.com</td>
      </tr>
      <tr>
        <td>July</td>
        <td>Dooley</td>
        <td>july@example.com</td>
      </tr>
    </tbody>
  </table>
</div>

</body>
</html>

于 2015-07-24T18:34:34.737 回答
0

试试这个

$("#boottable").on('all.bs.table', function (e, name, args) {
            console.log(name, args);
        });
于 2017-12-18T10:28:43.883 回答