복붙노트

[JQUERY] jQuery를 : DIV로로드 텍스트 파일 삽입

JQUERY

jQuery를 : DIV로로드 텍스트 파일 삽입

해결법


  1. 1.http://api.jquery.com/jQuery.ajax/ - 당신은 데이터 유형을 추가 할 필요가

    http://api.jquery.com/jQuery.ajax/ - 당신은 데이터 유형을 추가 할 필요가

    $(document).ready(function() {
        $("#lesen").click(function() {
            $.ajax({
                url : "helloworld.txt",
                dataType: "text",
                success : function (data) {
                    $(".text").html(data);
                }
            });
        });
    }); 
    

  2. 2.당신은 jQuery.load ()를 사용할 수 있습니다 http://api.jquery.com/load/

    당신은 jQuery.load ()를 사용할 수 있습니다 http://api.jquery.com/load/

    이 같이 :

    $(".text").load("helloworld.txt");
    

  3. 3..load ( "file.txt를")는 훨씬 더 쉽습니다. 심지어 테스트를하는 경우, 당신은 localdrive 결과를 얻을 수 없습니다 어떤 작동하지만, 당신은 실제 http 서버가 필요합니다. 보이지 않는 오류는 XMLHttpRequest의 오류입니다.

    .load ( "file.txt를")는 훨씬 더 쉽습니다. 심지어 테스트를하는 경우, 당신은 localdrive 결과를 얻을 수 없습니다 어떤 작동하지만, 당신은 실제 http 서버가 필요합니다. 보이지 않는 오류는 XMLHttpRequest의 오류입니다.


  4. 4.당신은 요소에 내용과 삽입을 얻기 위해 jQuery를로드 방법을 사용할 수 있습니다.

    당신은 요소에 내용과 삽입을 얻기 위해 jQuery를로드 방법을 사용할 수 있습니다.

    이 시도:

    $(document).ready(function() {
            $("#lesen").click(function() {
                    $(".text").load("helloworld.txt");
        }); 
    }); 
    

    로드 프로세스가 완료되면 당신은 또한 무엇인가를 실행하기 위해 다시 전화를 추가 할 수 있습니다

    예컨대 :

    $(document).ready(function() {
        $("#lesen").click(function() {
            $(".text").load("helloworld.txt", function(){
                alert("Done Loading");
            });
       }); 
    }); 
    

  5. 5.시험

    시험

    $(".text").text(data);
    

    또는 문자열로 수신 된 데이터를 변환합니다.


  6. 6.

     <script type="text/javascript">     
       $("#textFileID").html("Loading...").load("URL TEXT");
     </script>  
    
     <div id="textFileID"></div>
    
  7. from https://stackoverflow.com/questions/6470567/jquery-load-txt-file-and-insert-into-div by cc-by-sa and MIT license