Parsi Coders
سورس کد ماشین حساب (html) - نسخه قابل چاپ

+- Parsi Coders (http://parsicoders.com)
+-- انجمن: Web Development and Design (http://parsicoders.com/forumdisplay.php?fid=47)
+--- انجمن: HTML Programming (http://parsicoders.com/forumdisplay.php?fid=52)
+--- موضوع: سورس کد ماشین حساب (html) (/showthread.php?tid=2360)



سورس کد ماشین حساب (html) - Amin_Mansouri - 06-04-2012

سورس کد یک ماشین حساب به زبان html
کد:
<html><body bgcolor="pink"><center><form name="calculator"><table border="2" bgcolor="skyblue"><tr><td><input type="text" name="text" size="15"></td></tr><tr><td><input type="button" value="1" onclick="calculator.text.value += '1'"><input type="button" value="2" onclick="calculator.text.value += '2'"><input type="button" value="3" onclick="calculator.text.value += '3'"><input type="button" value="4" onclick="calculator.text.value += '4'"></td></tr><tr><td><input type="button" value="5" onclick="calculator.text.value += '5'"><input type="button" value="6" onclick="calculator.text.value += '6'"><input type="button" value="7" onclick="calculator.text.value += '7'"><input type="button" value="8" onclick="calculator.text.value += '8'"></td></tr><tr><td><input type="button" value="9" onclick="calculator.text.value += '9'"><input type="button" value="0" onclick="calculator.text.value += '0'"><input type="button" value="+" onclick="calculator.text.value += '+'"><input type="button" value="-" onclick="calculator.text.value += '-'"></td></tr><tr><td><input type="button" value="*" onclick="calculator.text.value += '* '"><input type="button" value="/" onclick="calculator.text.value += '/ '"><input type="reset" value="c" ><input type="button" value="=" onclick="calculator.text.value = eval(calculator.text.value)"></td></tr></table></form></center></body></html>