실 버 가격 변환기 (달러 / 온스 - > 인민폐 / 그램)

<!DOCTYPE html>   
<html>   
   <head>   
     <title>      BY [email protected]</title>   
     <meta charset="utf-8" />   
	 <style>
		body{
		
		}
	</style>
	 <script>
			var url = "http://api.liqwei.com/currency/?exchange=USD|CNY&count=";
			var YSTOG = 31.1035;
			function changeIt(){
				var price = document.getElementById('silverPrice').value;
				if(price){
					var result = parseFloat(price)/YSTOG;
					document.getElementById("result").src= url+result;
				}
				document.getElementById('silverPrice').select();
				document.getElementById('silverPrice').focus();
			}
	</script>
   </head>   
   <body onload="document.getElementById('silverPrice').focus()">
	
	      (  /  ):
	<input type="text" name="silverPrice" id="silverPrice"/>  
	<input type="button" name="  (   / )" value="  (   / )" onclick="changeIt()" />
	<br/><br/>
	  :
	<br/><br/>
	
	<iframe id="result" name="result" frameBorder="0" style="margin:0;padding:0;"></iframe>
	
	</body>
</html>   

위의 코드 를 html 형식 으로 저장 하고 브 라 우 저 로 열 면 사용 할 수 있 으 며 편리 하고 빠 릅 니 다!

좋은 웹페이지 즐겨찾기