잡동사니에도 사랑을

[21.09.27] exam04(01_helloJQuery) 본문

JAVA_EE/JQuery

[21.09.27] exam04(01_helloJQuery)

luvforjunk 2021. 9. 27. 19:41
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1 id="hello"></h1>
<p id="text">안녕하세요 제이쿼리!!</p>

<script type="text/javascript" src="../js/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$(function(){
		$('#hello').html("Hello jQuery!!");
		alert($('#text').html());
});
</script>
</body>
</html>
728x90
반응형

'JAVA_EE > JQuery' 카테고리의 다른 글

[21.10.06] exam01(02_jQueryEvent) -  (0) 2021.10.06
[21.09.27] exam05(01_helloJQuery)  (0) 2021.09.27
[21.09.27] exam03(01_helloJQuery)  (0) 2021.09.27
[21.09.27] exam02(01_helloJQuery) -  (0) 2021.09.27
[21.09.27] exam01(01_helloJQuery)  (0) 2021.09.27