我正在使用on
事件侦听器来侦听动态添加的select
元素。当事件发生时,有没有办法获得特定的select
元素? this
引用ul.form
。
$('ul.form').on('change', $("select[id$='end']"), function () {
var selector = // unsure what goes here.
self.modify(this);
});
答案 0 :(得分:2)
$('ul.form').on('change', $("select[id$='end']"), function (e) {
var selector = e.target;
self.modify(this);
});