티스토리 뷰
728x90
How do I make an App in Java Script? This App has three categorized buttons. Each button name is "Middle", "High" and "University".
To create an app with three categorized buttons in JavaScript, you can use the following steps:
- Create an HTML file and add a div element where you want the buttons to be displayed.
- Inside the div, create three button elements, one for each category.
- Use the document.getElementById() method to get a reference to the div element and store it in a variable.
- Use the innerHTML property of the div element to add text to the buttons, such as "Middle", "High", and "University".
- Add an onclick event listener to each button to specify the function that should be called when the button is clicked.
- In each event listener function, add the code that should be executed when the button is clicked. For example, you could show a message or load some data from an API.
Here is an example of what your HTML and JavaScript code might look like:
<!-- index.html -->
<html>
<head>
<title>My App</title>
</head>
<body>
<div id="button-container"></div>
<script src="app.js"></script>
</body>
</html>
// app.js
// Get a reference to the button container element
var container = document.getElementById("button-container");
// Add the buttons to the container element
container.innerHTML = "<button>Middle</button><button>High</button><button>University</button>";
// Add an event listener to the first button
document.getElementById("button-container").children[0].addEventListener("click", function() {
// Show a message when the button is clicked
alert("Middle button clicked!");
});
// Add an event listener to the second button
document.getElementById("button-container").children[1].addEventListener("click", function() {
// Show a message when the button is clicked
alert("High button clicked!");
});
// Add an event listener to the third button
document.getElementById("button-container").children[2].addEventListener("click", function() {
// Show a message when the button is clicked
alert("University button clicked!");
});
You can adjust this code to suit your specific needs and add more functionality to the app.
728x90
'IT 상식' 카테고리의 다른 글
고양이와 사자 (by Bot) (0) | 2022.12.16 |
---|---|
독립시행(정이가는 챗 봇) (0) | 2022.12.16 |
chat with "chatGPT" (0) | 2022.12.16 |
내 컴퓨터 사양 자세히 알기 (0) | 2022.10.28 |
JS map 이용 엘리먼트 개수 구하기 (0) | 2022.10.21 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 하나님의 교회 #안상홍 하나님 #이단
- 추가 분담금
- 미러프린서플
- empress myeongseong
- 풍뢰익
- ronin
- 빈집세
- kim keon-hee
- 10년 국운
- 지주택조합
- 국가 자본주의
- 본괘
- 클루지 # 개리마커스 #인간의 오류와 신앙
- 학벌주의
- 사적 자본주의
- 코리아 디스카운트
- 아카식레코드
- 수축경제
- 한국경제의 미래
- first lady
- 현대 판 노예제도
- 변괘
- 금융 노예
- 전문직 직업
- 잡궤전
- 동효
- 김건희
- 불황의 대안
- 조선왕조의 몰락 # 로마의 몰락 # 로마의 부흥 # 빈부격차
- 사기를 조장하는 사회
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
글 보관함
250x250
반응형