반응형
목차
내가 나중에 찾아보기 위해 기록함
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- jQuery cdn 최신 불러오기 start -->
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<!-- jQuery cdn 최신 불러오기 end -->
</head>
<body>
<script>
$(document).ready(function() {
test();
});
function test() {
console.log('test');
}
</script>
</body>
</html>
참조 : 기록하는 동구, "2020.02.03", https://donggu1105.tistory.com/22
반응형
'IT > development' 카테고리의 다른 글
[WAS]apache tomcat 요청 타겟에서 유효하지 않은 문자가... (0) | 2022.11.24 |
---|---|
[java]생년월일로 만나이 계산 예제 (0) | 2022.11.24 |
[WAS] Apache Tomcat 한글 깨짐(인코딩 문제) (0) | 2022.11.24 |
Cannot create JDBC driver of class 'net.sf.log4jdbc.sql.jdbcapi.DriverSpy'... (0) | 2022.11.24 |
[전자정부프레임워크/egovframework] log4j 2 설정(log4j2.xml 등) (0) | 2022.11.24 |