這裏是jQuery代碼如何使用此代碼
$(function(){
var file_type = '';
var btnUpload=$('#BackgroundimageUpload');
var status=$('.status');
new AjaxUpload(btnUpload, {
action: "common_files/cover_image_change.php",
//Name of the file input box
name: 'uploadfile',
onSubmit: function(file, ext){
file_type = ext;
status.html('uploading....');
},
onComplete: function(file, response){
//On completion clear the status
status.html('');
//Add uploaded file to list
if(response==="upload_error"){
alert("Error in upload");
} else{
var imgHtml = '<br/><br/><div><img src="uploads/'+response+'" style="width:100%; height:1004;" /></div>';
$("#timelineBackgroundUploading").html('');
$("#timelineBackgroundUploading").append(imgHtml);
}
}
});
});
`
這是上面的代碼我傳遞一個參數到PHP文件,我想通過一個參數(ID)到PHP文件。我怎樣才能做到這一點。
格式化您的問題 – 2015-04-03 04:34:59
不要嘗試在評論中放置長代碼塊。把它放在問題中,以便可以將其格式化爲可讀。 – Barmar 2015-04-03 04:36:41
你能給出一個鏈接到你正在使用的'AjaxUpload'插件的位置嗎?我無法用Google找到它的文檔。 – Barmar 2015-04-03 04:42:39