이것들은 우리 프로젝트에 필수적인 것이므로 오늘은 iframe인 artdialog라는 두 개의 jquery 플러그인과 jquery 파일 업로드라는 플러그인을 추천합니다. 이 플러그인을 사용하는 방법에 대한 튜토리얼은 거의 없습니다. 오늘은 인터넷에 jquery 파일업로드하는 방법 몇 가지를 간략하게 소개하고 적어보겠습니다!
코드를 이용한 간단한 예시
최소화 방법
data-url은 업로드한 파일을 업로드한 후 실행시키는 php 메소드입니다
$(함수 () {
$('#fileupload').fileupload({
dataType: 'json', //josn 전송
done: function (e, data) { //업로드 후 실행
$.each(data.result.files, 함수(색인, 파일) {
$('
').text(file.name).appendTo(document.body);
});
}
});
});
$(함수(){
//전체 API는 여기에 있습니다
https://github.com/blueimp/jQuery-File-Upload/wiki/API 일반적으로 사용되는 몇 가지 지침만 간단히 소개하겠습니다
$("#fileupload").fileupload('option',{ //업로드 이벤트 설정
url: 'http://localhost/php/index.php' //php 업로드 방법 지정
비활성화ImageResize: /Android(?!.*Chrome)|오페라/
.test(window.navigator.userAgent), .
에게
acceptFileTypes: /(.|/)(rar|zip|jp?g|png|bmp)$/i, //업로드 유형 설정
});
$.ajax({
url: $('#fileupload').fileupload('option', 'url'), //설정 옵션에 따라 ajax 전송
데이터 유형: 'json',
컨텍스트: $('#fileupload')[0]
}).done(함수(결과) {
$(this).fileupload('option','done'
).call(this, $.Event('done'), {result: result}) //업로드 완료 후 해야 할 일
~
});
$('#fileupload').bind('fileuploaddone',function(e,data){ //업로드가 완료되는 이벤트 바인딩
$.each(data.result.files, 함수(색인,파일){
for(파일의 var i){
경고(i ':' 파일[i])
}
});
//바운드 이벤트가 너무 많습니다. 직역하면 무슨 뜻인지 알 수 있습니다
$('#fileupload')
.bind('fileuploadadd', 함수 (e, 데이터) {/* ... */})
.bind('fileuploadsubmit', 함수(e, 데이터) {/* ... */})
.bind('fileuploadsend', 함수 (e, 데이터) {/* ... */})
.bind('fileuploaddone', 함수 (e, 데이터) {/* ... */})
.bind('fileuploadfail', 함수 (e, 데이터) {/* ... */})
.bind('fileuploadalways', 함수 (e, 데이터) {/* ... */})
.bind('fileuploadprogress', 함수 (e, 데이터) {/* ... */})
.bind('fileuploadprogressall', 함수 (e, 데이터) {/* ... */})
.bind('fileuploadstart', 함수 (e) {/* ... */})
.bind('fileuploadstop', 함수 (e) {/* ... */})
.bind('fileuploadchange', 함수 (e, 데이터) {/* ... */})
.bind('fileuploadpaste', 함수 (e, 데이터) {/* ... */})
.bind('fileuploaddrop', 함수 (e, 데이터) {/* ... */})
.bind('fileuploaddragover', 함수 (e) {/* ... */})
.bind('fileuploadchunksend', 함수(e, 데이터) {/* ... */})
.bind('fileuploadchunkdone', 함수(e, 데이터) {/* ... */})
.bind('fileuploadchunkfail', 함수(e, 데이터) {/* ... */})
.bind('fileuploadchunkalways', 함수(e, 데이터) {/* ... */});
});
});
이 플러그인은 매우 강력하고 메서드와 API가 너무 많기 때문에 먼저 공식 웹사이트에서 API를 살펴보실 수 있습니다. 물론 이해가 안 되시면 저에게 물어보셔도 됩니다!
두 번째는 사실 매우 간단한 ArtDialog입니다. API가 모두 중국어로 되어 있어 학생들이 한눈에 이해할 수 있습니다. 바로 데이터 전송 방법입니다. iframe이 닫힐 때?
index2.html 데이터를 다시 전송하고 싶습니다. 물론 X를 클릭하면 내 index2가 이미 데이터를 상위 iframe으로 다시 전송합니다. 아래 코드는
입니다.
물론 '그렇습니다!'를 클릭해도 데이터가 전송되지 않습니다.