0

に相当するもの

var input = document.getElementById("images"),
input.addEventListener("change", function (evt) {});

jQueryで?

4

3 に答える 3

4
$('#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.

于 2013-01-21T15:02:34.120 に答える
2

あなたは単に使用することができます

$('#images').change(function(evt) {

});
于 2013-01-21T15:06:36.667 に答える
2
var input = $('#images')

input.bind("change",function(evt){

});
于 2013-01-21T15:02:02.127 に答える