> 웹 프론트엔드 > JS 튜토리얼 > 2 jQuery 플러그인-jquery.fileupload 및 artdialog_jquery 공유

2 jQuery 플러그인-jquery.fileupload 및 artdialog_jquery 공유

WBOY
풀어 주다: 2016-05-16 16:24:21
원래의
1127명이 탐색했습니다.

이것들은 우리 프로젝트에 필수적인 것이므로 오늘은 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이 닫힐 때?

코드 복사 코드는 다음과 같습니다.





jquery 처리


함수 nihao(){
art.dialog.open( //iframe 원격 파일 열기
"http://localhost/dialog/index2.html",
{
제목: "테스트 페이지",
너비: 320,
높이: 400,
닫기 : 함수(){
//iframe이 닫힐 때 실행
Alert("신이 문을 닫았습니다.")
}
}
);
}



제출

index2.html 데이터를 다시 전송하고 싶습니다. 물론 X를 클릭하면 내 index2가 이미 데이터를 상위 iframe으로 다시 전송합니다. 아래 코드는

입니다.

코드 복사 코드는 다음과 같습니다.




jquery 처리




var 원본 = artDialog.open.origin;
var v = Origin.document.getElementById('nihao');
v.value = document.getElementById('chushu').value;


물론 '그렇습니다!'를 클릭해도 데이터가 전송되지 않습니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿