0
下面是我在我的網頁中使用的JavaScript。 我敢肯定有一種方法可以在使用下面的一些代碼時添加工具提示,我只是沒有想到它。 如果我可以獲取標題數據並將其放入下面我已經完成的搜索框中,那麼我應該能夠獲取表格單元格數據並將其放入工具提示中。問題是如何?如何在jQuery數據表中單擊時在工具提示內顯示來自其中一列(非靜態內容)的數據?
// DataTable
var table = $('#example').DataTable();
//this just is code that adds search headers
$(document).ready(function() {
// Setup - add a text input to each footer cell
$('#example tfoot th').each(function() {
var title = $(this).text();
var data =
$(this).html('<input type="text" title = data style= "font-size:.6em" placeholder="Search ' + title + '" />');
});
// Apply the search
table.columns().every(function() {
var that = this;
$('input', this.footer()).on('keyup change', function() {
if (that.search() !== this.value) {
that
.search(this.value)
.draw();
}
});
});
});
</script>
本例使用qtip2插件在第一列顯示工具提示http://jsbin.com/muhados/edit?html,css,js,output – Bindrid