0

私は Jquery file upload wiki を読んできましたが、サーバーのアップロード フォルダーをオンザフライで変更する方法の例に出くわしませんでした。PHPサーバーのアップロードディレクトリをプログラムで変更する方法に関する実際の例はありますか?

4

1 に答える 1

0

これは基本的に JQuery Fileupload docs から外れており、もう少し説明があります。

//You should bind this to the same object you setup the fileupload on
$('#fileupload').bind('fileuploadsubmit', function (e, data) {
    // The example input, doesn't have to be part of the upload form
    var input = $('#inputWithVariable');

    //Add the new value as a variable called "folder" which will tell you which
    //directory they selected
    data.formData = {folder: input.val()};

    //Optional validation to make sure the input value exists
    if (!data.formData.example) {

     //If the value does not exist, return focus to the input 
     //or maybe select in your case and return false to prevent the upload
      input.focus();
      return false;
    }
});
于 2013-05-01T03:50:00.037 に答える