に相当するもの
var input = document.getElementById("images"),
input.addEventListener("change", function (evt) {});
jQueryで?
に相当するもの
var input = document.getElementById("images"),
input.addEventListener("change", function (evt) {});
jQueryで?
$('#images').on("change",function(evt){
});
.on()
should be your first option, if your jquery is < v1.7 then you can use bind()
instead.
For further references: Check the jQuery API Documentation.
あなたは単に使用することができます
$('#images').change(function(evt) {
});
var input = $('#images')
input.bind("change",function(evt){
});