混水摸魚

[ BOOTSTRAP ] – table 選取列 變色

[html]
var $table = $(‘#tb’);
$(function () {
$table.on(‘click-row.bs.table’, function (e, row, $element) {
$(‘.success’).removeClass(‘success’);
$($element).addClass(‘success’);
});
});
[/html]

Leave a Comment

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *