728x90
ex02.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
function myclick(){
var obj = document.querySelector('.it').value;
num = parseInt(obj);
num2 = num * 2;
console.log(num2)
document.querySelector('.it').value = num2;
}
</script>
</head>
<body>
EX02
<input class="it" type="text" value="100" />
<input type="button" value="DOUBLE" onclick=" myclick()">
</body>
</html>
'Python > Muzi' 카테고리의 다른 글
JS강화학습04. 구구단 생성해서 출력하기 (0) | 2023.07.12 |
---|---|
JS강화학습03. 로또번호 생성해서 출력하기 (0) | 2023.07.12 |
JS강화학습01. div 태그 안에 글씨 바꾸기 (0) | 2023.07.12 |
파이썬 PYQT 디자이너 실행 (0) | 2023.06.29 |
안드로이드 스튜디오 돌핀버전 다운로드 하는 방법 (0) | 2023.06.23 |