我正在使用插件floatHead将我的thead保持在固定位置。 这适用于加载插件时DOM中存在的表。 但我需要它来处理动态创建的表。
$('#tbl').floatThead();
尝试在新创建的表上应用插件会导致错误:
TypeError: $(...).floatThead is not a function
答案 0 :(得分:0)
了解" floatThead",我不是Jquery专家,但你可以将事件处理程序附加到这样的动态元素:
@IBAction func switchBtn(_ sender: UISwitch) {
let index = sender.tag
let cur = Cur[index]
}
答案 1 :(得分:0)
将所有动态表的类设为 .tbl
$(document).on('load', '.tbl', function(e) {
$(this).floatThead();
});