如何获取动态添加的输入字段的ID? 我的脚本使用
添加单击按钮的输入字段var ix = 1;
$(template2(ix++)).appendTo("#dataTable tbody");
var template2 = jQuery.format($("#template2").val());
我还在插入新字段后添加了这一行,因此它将typeWatch添加到所有.email类字段中。
$(".email").typeWatch( { highlight:true, callback:function(){alert("changed search text"); }, wait:750 } );
现在,在回调函数中,我希望获得输入字段的类型,类型为CallWatch Callback。
请指教。
谢谢
答案 0 :(得分:1)
在回调函数中,它看起来像this.el包含触发回调的元素的DOM对象。所以,
$(this.el).attr('id')
应该为您提供您正在寻找的ID。这是在插件版本2.0.0
下