当前位置: 代码迷 >> Web前端 >> jQuery 对输入框值开展计算
  详细解决方案

jQuery 对输入框值开展计算

热度:76   发布时间:2012-10-09 10:21:45.0
jQuery 对输入框值进行计算
<!DOCTYPE html> 
<html> 
<head> 
  <style> 
  p { color:blue; margin:8px; } 
  </style> 
  <script src="http://code.jquery.com/jquery-latest.js"></script> 
</head> 
<body> 
  <input type="text" id="s1" value=""/> * <input type="text" id="s2" value=""/> =  <input type="text" id="s3" value=""/>  
	<script> 
		var value1=0;
		var value2=0;
		$("#s1").keyup(function(){
			value1 = $(this).val(); 
			$("#s3").val(value2*value1); 
		});

		$("#s2").keyup(function(){
			value2 = $(this).val(); 
			$("#s3").val(value2*value1); 
		});
	</script> 
 
</body> 
</html>

?

  相关解决方案