텍스트 정보를 얻는 방법은 다양합니다. 이 예에서는 모두가 이 방법을 사용했을 것으로 생각됩니다. 획득 후, Alert 를 이용하여 텍스트를 팝업 시켜주세요. 구현 코드는
입니다.<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style> p { margin:8px; font-size:20px; color:blue; cursor:pointer; } b { text-decoration:underline; } button { cursor:pointer; } </style> <script type="text/javascript" src="js/jquery-1.9.1.min.js"></script> </head> <body> <b>Show My Text</b> <div id="TEXT"></div> <script> $("#TEXT").load("qqq.txt", function(response, status, xhr) { var text=$(this).text(); alert( text); }); </script> </body> </html>