Сообщение от dezytube
|
я написал что то в поле и мне добавилось в span значение 2000
если в другое поле что то заполнил еще + 2000
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
$('input').bind('change',function(){
var o=$('span')
var val=parseInt(o.text())+2000;
o.text(val);
});
});
</script>
</head>
<body>
<form method="post">
<input type="text" name id="equipment"/>
<input type="text" name id="project"/>
<input type="text" name id="container"/>
<input type="text" name id="performance"/>
<input type="text" name id="money"/>
<p><span>1000</span></p>
</form>
</body>
</html>