我将一个函数附加到某个表的每个 th 元素:
$(document).ready(function()
{
$('#table_id thead th').each(function()
{
$(this).disableTextSelect(); // disableTextSelect() is user defined function extending jquery
});
}
如果表已经加载,这可以正常工作。为了将它附加到表格中,如果将来要加载它,我必须使用 .on()。但我不知道怎么做:-(
$(document).on('which event?!', '#table_id thead th', function()
{
$(this).disableTextSelect();
});
非常感谢,幻影