AJAX 새로고침하지 않은 업로드 이미지는 프로젝트에서 자주 사용되는데, iframe 업로드와 플래시 플러그인은 상대적으로 복잡해서 jquery 플러그인을 찾았습니다. 다음은 jQuery ajaxupload 플러그인을 사용하여 새로 고침 없이 파일을 업로드하는 방법을 소개하는 예제 코드입니다. 필요한 친구들이 참고하면 도움이 될 것입니다.
코드는 다음과 같습니다
사용 방법은 다음과 같습니다
<script type="text/javascript"> $(function () { var button = $('#upload'); new AjaxUpload(button, { action: '/upload/imagesAjaxUpload', name: 'upload', onSubmit: function (file, ext) { if (!(ext && /^(jpg|jpeg|JPG|JPEG)$/.test(ext))) { alert('图片格式不正确,请选择 jpg 格式的文件!', '系统提示'); return false; } // change button text, when user selects file button.text('上传中'); // If you want to allow uploading only 1 file at time, // you can disable upload button this.disable(); // Uploding -> Uploading. -> Uploading... interval = window.setInterval(function () { var text = button.text(); if (text.length < 10) { button.text(text + '...'); } else { button.text('上传中'); } }, 200); }, onComplete: function (file, response) { window.clearInterval(interval); // enable upload button this.enable(); var json = eval('(' + response + ')'); button.text('选择文件'); $(".qr").css("display","inline"); $(".qr>img").attr("src",json.file_name); $("input[name='wechat_qr']").val('/uploads/qr/'+json.file_name); //alert(json.file_name); //$("#ajaximg").html("<img src='/uploads/qr/"+json.file_name+"' />"); //$("#wechat_qr").val('/uploads/qr/'+json.file_name); } }); }); </script>
관련 권장 사항:
새로 고침 없이 파일 업로드 기능을 구현하는 ajax에 대한 자세한 설명 예시
새로 고침 없이 업로드할 수 있는 JavaScript 미리보기 이미지 기능
위 내용은 새로 고침 없이 파일을 업로드하기 위한 jQuery ajaxupload 플러그인에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!