html
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<!-- 파일 읽어오기 -->
<!-- onload -->
<div id="news">로딩중...</div>
<script type="text/javascript">
$(document).ready(function() {
$("#news").load("news.txt", function (txt, status) {
//읽어온 문자열
alert(status); //success
//alert(txt); //news.txt의 내용
});
});
</script>
news.txt
뉴스 아무거나~~~~~~~~~
'JQuery > work' 카테고리의 다른 글
사진 클릭하여 이미지 변경하기(attr) (0) | 2020.07.17 |
---|---|
ul,li의 선택항목 구하기 //차 (0) | 2020.07.17 |
송장정보의 입력 (0) | 2020.07.17 |
append와 prepend로 추가하기 (0) | 2020.07.16 |
블로그//답글입력 (0) | 2020.07.16 |