سلام به دوستان عزیز بیست اسکریپت دیشب برای شما اسکریپت ماشین حساب قرار دادم که از این ماشین حساب حرفه ای تر بوده است ! حال با چند خط ساده با جاوا اسکریپت برای شما یک ماشین حساب آماده استفاده کرده ایم که انشالله کاربردی باشه
<html><head> <title>Simple JavaScript Calculator(20Script.IR)</title></head><body><form name="calculator"> <input type="text" name="input"> <br /><br /> <input type="button" value="1" onclick="calculator.input.value += '1'"> <input type="button" value="2" onclick="calculator.input.value += '2'"> <input type="button" value="3" onclick="calculator.input.value += '3'"> <input type="button" value="+" onclick="calculator.input.value += '+'"> <br /> <input type="button" value="4" onclick="calculator.input.value += '4'"> <input type="button" value="5" onclick="calculator.input.value += '5'"> <input type="button" value="6" onclick="calculator.input.value += '6'"> <input type="button" value="-" onclick="calculator.input.value += '-'"> <br /> <input type="button" value="7" onclick="calculator.input.value += '7'"> <input type="button" value="8" onclick="calculator.input.value += '8'"> <input type="button" value="9" onclick="calculator.input.value += '9'"> <input type="button" value="*" onclick="calculator.input.value += '*'"> <br /> <input type="button" value="C" onclick="calculator.input.value = ''"> <input type="button" value="0" onclick="calculator.input.value += '0'"> <input type="button" value="=" onclick="calculator.input.value = eval(calculator.input.value)"> <input type="button" value="/" onclick="calculator.input.value = '/'"></form></body></html>