我目前正在处理多个 php 图片上传,但使用此站点我无法弄清楚,如果我可以将文件上传的输入从 3 个增加到 4 个?我查看了所有文件,但没有找到任何相关的内容。以前使用过这个SITE示例的任何人都可以帮助我吗?
jQuery
(function($) {
$(document).ready(function() {
// it must be checked if there are div.imageForms because the
// uploaderPreviewer javascript may be not included and produce an error
if ($('div.imageForms').length) {
$('div.imageForms').append($.uploaderPreviewer.createImageForms());
// the images are populated if the admin form is to edit, and not
// to insert
if ($('div.imageForms[images]').length) {
var imageFilenames = $('div.imageForms[images]').attr('images').split(',');
$.uploaderPreviewer.populateImages(imageFilenames);
$('div.imageForms[images]').removeAttr('images');
}
}
$('#buttonSave').click(function() {
var itemId = $(this).attr('itemId');
if (itemId) {
$.itemForm.update(itemId);
}
else {
$.itemForm.insert();
}
});
});
})(jQuery);
</script>
HTML
<html>
<div class="imageForms"></div>
<div class="buttonSave">
<button id="buttonSave">Upload</button>
</div>
</div>
</html>