我正在使用 ajax 上传图像。
我想让这个函数使用类名而不是 ids。
$(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 标签。
请建议我如何更改此功能以使用类而不是 id
<img class="uploader" src="" />
<img class="uploader" src="" />