1

現在、複数の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>
4

1 に答える 1

1

DOMがロードされると、$。uploaderPreviewerオブジェクトオプションを操作できます。あなたがしなければならないのは:

$.uploaderPreviewer.formsCount = 4;

改訂されたコードを参照してください。

于 2012-07-02T23:27:52.930 に答える