코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>jQuery Ajax Intro</title> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script> $(function() { $("#requestBtn").on("click", function() { $("#text").load("/examples/media/jquery_ajax_data.txt"); }); }); </script> </head> <body> <h1>제이쿼리와 Ajax</h1> <p id="text">이 단락에 다른 텍스트를 불러와보죠!</p> <button id="requestBtn">데이터 불러오기!</button> </body> </html>