我使用ajax上傳圖像。使用ajax重新加載圖像jquery
我想讓這個函數與類名而不是id一起使用。
$(document).ready(function(){
var button = $('#uploader'), interval;
new AjaxUpload(button, {
action: 'upload.php',
onSubmit : function(file , ext){
if (! (ext && /^(jpg|png|jpeg|gif)$/.test(ext))){
alert('Error: Only images are allowed');
return false;
} else {
// Image Accepted.
}
},
onComplete: function(file, response){
button.attr("src", response);
}
});
});
在HTML
<img id="uploader" src="" />
工作正常,但我想添加更多的img標籤。
請建議我怎樣才能改變這個函數類,而不是IDS
<img class="uploader" src="" />
<img class="uploader" src="" />
IMG標籤是動態創建 –