我在使用 Javascript 文件 API 时遇到问题。首先,我正在检查表单输入是否有价值,如果表单输入类型=文件名是图像,我希望它获取图像:
function checkIfValued() {
$("form input, textarea").change(function() {
// ifs ....
else if (name === "image") {
checkQrCode();
}
// else ifs ....
});
}
获取图像:
function checkQrCode(evt) {
var qrcode = evt.target.files[0]; // create a FileList and take the first one
if (!qrcode.type.match("image.*")) { // check to see if it is an image
var $parentDiv = $(this).parent().parent();
$parentDiv.removeClass("has-success");
$parentDiv.addClass("has-error");
return;
}
var reader = new FileReader(); // create a FileReader
reader.onload = function (evt) {
var img = new Image(); // create a new image
img.src = event.target.result; // set the src of the img to the src specified
if ($("#qrcode").siblings().length != 0) { // if qrcode has siblings (function already executed)
$("#qrcode").siblings().remove(); // remove the siblings
}
$("#qrcode").parent().append(img); // append the img to the parent
$("#qrcode").siblings("img").addClass("img-thumbnail");
$("#qrcode").siblings("img").css("float", "left");
}
reader.readAsDataURL(qrcode);
}
当我使用:
$("#qrCode").change(checkQrCode);
它有效,但是当我使用第一个代码时它没有。我猜它与 checkQrCode 函数中的事件有关(在最后一个代码中,事件直接与函数相关联,在第二个代码中它有一个 if 语句)。
无论如何,我该如何解决它,如果有人可以解释 event/evt 选项,将不胜感激。