<html> <head> <title>계산기</title> <script> bBool=false var copiedtext="" var tempstore="" function initiatecopy() { bBool=true; } function copyit() { if (bBool) { tempstore=copiedtext document.execCommand("Copy") if (tempstore!=copiedtext) { alert(copiedtext); } bBool=false; } } document.onselectionchange = initiatecopy document.onmouseup = copyit </script> </head> <script language="JavaScript"> function cal(p){ p.value=eval(p.value) } function e_expr(p,str){ p.value=p.value+str } function clear_expr(p){ p.value="" } </script> <body> <center> <form name="calform"> <div align="left"> <table border=30 bordercolor="silver" bordercolordark="silver"> <td colspan=4> <p align="center"><input type="text" name="expr" size="20"></p> <tr> <tr> <td> <p align="center"><input type="button" value=" 7 " onclick="e_expr(document.calform.expr,'7')"> </p> <td> <p align="center"><input type="button" value=" 8 " onclick="e_expr(document.calform.expr,'8')"> </p> <td> <p align="center"><input type="button" value=" 9 " onclick="e_expr(document.calform.expr,'9')"> </p> <td> <p align="center"><input type="button" value=" ÷ " onclick="e_expr(document.calform.expr,'/')"> </p> <tr> <td> <p align="center"><input type="button" value=" 4 " onclick="e_expr(document.calform.expr,'4')"> </p> <td> <p align="center"><input type="button" value=" 5 " onclick="e_expr(document.calform.expr,'5')"> </p> <td> <p align="center"><input type="button" value=" 6 " onclick="e_expr(document.calform.expr,'6')"> </p> <td> <p align="center"><input type="button" value=" × " onclick="e_expr(document.calform.expr,'*')"> </p> <tr> <td> <p align="center"><input type="button" value=" 1 " onclick="e_expr(document.calform.expr,'1')"> </p> <td> <p align="center"><input type="button" value=" 2 " onclick="e_expr(document.calform.expr,'2')"> </p> <td> <p align="center"><input type="button" value=" 3 " onclick="e_expr(document.calform.expr,'3')"> </p> <td> <p align="center"><input type="button" value=" - " onclick="e_expr(document.calform.expr,'-')"> </p> <tr> <td> <p align="center"><input type="button" value=" 0 " onclick="e_expr(document.calform.expr,'0')"> </p> <td> <p align="center"><input type="button" value=" 00 " onclick="e_expr(document.calform.expr,'00')"> </p> <td> <p align="center"><input type="button" value=" . " onclick="e_expr(document.calform.expr,'.')"> </p> <td> <p align="center"><input type="button" value=" + " onclick="e_expr(document.calform.expr,'+')"> </p> <tr> <td colspan=2> <p align="center"><input type="button" value=" = " onclick="cal(document.calform.expr)"> </p> <td colspan=2> <p align="center"><input type="button" value="초기화" onclick="clear_expr(document.calform.expr)"> </p> <tr> </tr> </table> </div> </form> </center> </body> </html> <body oncontextmenu="return false">
2015.01.21 17:20
계산기 html 소스
조회 수 1683 추천 수 0 댓글 0
웹코드
자바스크립트
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
12 | 기본 | 배경색 스크롤 박스 선택 스크립트(미리보기 참조) | 보석 | 2013.09.09 | 4090 |
11 | 기본 | 배경 출력 후 원하는 링크로 이동 시키는 스크립트 | 보석 | 2013.09.09 | 4435 |
10 | 기본 | 랜덤 배경 스크립트 | 보석 | 2013.09.09 | 4772 |
9 | 기본 | 배경음악 스크립트 | 보석 | 2013.09.12 | 4875 |
8 | 기본 | 좋아하는 색상을 입력하면 배경으로 출력하는 스크립트 | 보석 | 2013.09.12 | 4864 |
7 | 기본 | 버튼을 누르면 경고 맨트 출력 스크립트 | 보석 | 2013.09.12 | 4756 |
6 | 기본 | 클릭하면 이메일 보내기 실행하는 스크립트 | 보석 | 2013.09.12 | 4713 |
5 | 기본 | 앞으로 가기, 뒤로가기 버튼 스크립트 1 | 보석 | 2013.09.12 | 4674 |
4 | 기본 | 보기좋은 글자 효과 배너 스크립트 1 | 보석 | 2013.09.12 | 4928 |
3 | 간단한 계산 소스 1 | 보석 | 2015.01.21 | 1670 | |
» | 계산기 html 소스 | 보석 | 2015.01.21 | 1683 | |
1 | Math.abs // Math.round 뜻 | 보석 | 2015.01.27 | 2027 |