动态创建元素的事件,并使用each()选择

时间:2015-01-19 16:41:33

标签: jquery events this each dynamically-generated

我想处理动态创建的元素的更改事件,并使用each()选择:

$("input[type=date]").each(function() {
    $("#myForm").on("change", this, function() {
        $(this).css({ color: "#B73132" });
    });
});

on()似乎不起作用。

我试过了:

$this= $(this); // and    $this= this;with
$("#form_cahier").on("change", $this, function() {

没有任何作品,任何想法?

0 个答案:

没有答案