반응형
Q>
텍스트를 클릭하면 사라지는 웹 페이지를 jQuery Mobile로 작성해 본다.
A>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery Mobile Quiz 5</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="content">
<p>클릭하면 사라집니다.</p>
<p>클릭하면 사라집니다.</p>
<p>클릭하면 사라집니다.</p>
</div>
</div>
<script>
$("p").click(function () {
$(this).hide();
return true;
});
</script>
</body>
</html>
R>
|
반응형
'Python_WEB > JavaScript' 카테고리의 다른 글
[부스트코스]웹과 Javascript 퀴즈 2 (0) | 2021.01.16 |
---|---|
[부스트코스]웹과 Javascript 퀴즈 1 (0) | 2021.01.16 |
[Ch16]모바일 웹 페이지 연습문제 4 (0) | 2021.01.05 |
[Ch16]모바일 웹 페이지 연습문제 3 (0) | 2021.01.05 |
[Ch16]모바일 웹 페이지 연습문제 2 (0) | 2021.01.04 |