의뢰를 드릴까하는데..
본문
이게 간단한 작업인지 아니면 복잡한 작업인지 의뢰하기전에 문의드립니다.
a부터 j까지 10개의 할인율 적어두고
텍스트박스에 일정 금액을 입력한뒤 a라는 버튼을 누르면
일정 금액에서 a에 적용한 퍼센티지를 계산해서 출력.
b라는 버튼을 누르면 b에 이미 입력한 퍼센티지를 계산해서 출력.
이렇게 10개정도 버튼으로 각각의 퍼센티지를 계산해서 출력되게하면 됩니다.
즉,
a에 1% 가 입력된 상태에서
10000원을 입력하고 a버튼을 누를시 값은 100원이 나오면 됩니다.
웹에서 사용할거니 자바나 php 로 가능한가요??
복잡한 작업인지요??
답변 3
저는 이제 코딩하지 말아야겠네요. 아~ ㅠ
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
var x = [0.5, 1, 2, 3, 4, 5, 6, 7, 8, 9];
function comp(n) {
var money = parseFloat(document.getElementById('money').value);
var result = money * x[n] / 100;
document.getElementById('result').value = result;
}
</script>
</head>
<body>
Money : <input type=text id=money value=10000>
<br>
<input type=button value=a onclick="comp(0);">
<input type=button value=b onclick="comp(1);">
<input type=button value=c onclick="comp(2);">
<input type=button value=d onclick="comp(3);">
<input type=button value=e onclick="comp(4);">
<input type=button value=f onclick="comp(5);">
<input type=button value=g onclick="comp(6);">
<input type=button value=h onclick="comp(7);">
<input type=button value=i onclick="comp(8);">
<input type=button value=j onclick="comp(9);">
<br>
Result : <input type=text id=result>
</body>
</html>
간단한거같네여. 복잡하진않습니다.
스크립트 15줄이면 끝날작업일듯여
계산식만 넣어주면 대겠네여
그림까지 그려서 의뢰 하시면 작업할 때 더 수월하게 진행될 수 있습니다.
그림 그릴 때 저는 주로
발사믹 목업 프로그램을 자주 사용 합니다.
답변을 작성하시기 전에 로그인 해주세요.