Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- DataGridView 직접 입력
- 1883
- mosquitto
- datagridview 직접입력
- allow_anonymouse
- setInterval clear
- transfer
- listener 1883
- invalid data
- 서버동기화
- timepicker
- mosquitto.conf
- pm2 시작
- 공인IP
- pm2 상태 확인
- c# datagridview 데이터 넣기
- 데이터테이블 데이터 넣기
- setInterval 외부 정지
- setInterval 정지
- pm2 설치
- DatePicker
- pm2 확인
- 맥 어드레스
- Replication
- html #select #option #multiple
- pm2
- mySQL_Replication
- AntDesign
- setInterval 중지
- map이 undefined가 뜰 때
Archives
- Today
- Total
개발 노트
html form 태그 연습 4 본문
<input type="submit" value="전송">
submit만 썼을때는 제출이 나왔는데 value=''전송''을 입력하니까 전송버튼이 나왔다
<input type="button" value="버튼"> value로 버튼을 만들었으나 아무일도 안일어난다
onclick=alert ('hellw word') 나중에 자바스크립트를 배워서 씌워야한다
<input type="reset"> form태그 안에 있는거 다 리셋
<html>
<head><meta charset="utf-8"
<body>
<form action="http://localhost/form.php">
<input type="submit" value="전송">
<input type="button" value="버튼" onclick="alert('hello word')>
<input type="reset">
</form>
</body>
</head>
</html>