我想处理动态创建的元素的更改事件,并使用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() {
没有任何作品,任何想法?