Register for your free account! | Forgot your password?

You last visited: Today at 09:22

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Zahlen Kommata

Discussion on Zahlen Kommata within the Coding Snippets forum part of the Coding Releases category.

Reply
 
Old   #1
dotCom
 
Devsome's Avatar
 
elite*gold: 12400
The Black Market: 104/0/0
Join Date: Mar 2009
Posts: 15,880
Received Thanks: 4,386
Zahlen Kommata

Hallo,

sollte mal ein Input Feld basteln was die Zahl richtig formatiert.
Vielleicht kann es jemand gebrauchen.

Code:
<!doctype html>
	<head>
		<title>Input</title>
		<style type="text/css">
			input.right{
				text-align:right;
			} 
		</style>
		<script type="text/javascript">
			function addCommas(event, element){
				var keyCode = ('which' in event) ? event.which : event.keyCode;
				if (keyCode == 8 || keyCode == 46 || keyCode == 37 || keyCode == 39 || keyCode == 46){
					return true;
				}
				if ((keyCode < 48 || keyCode > 57)) {
					return false;
				}
				
				if ( element.value.length >= 2 ) {
					var buffer = element.value.replace(",","") + String.fromCharCode(keyCode);
					var buffer = buffer.replace(/\./g, '');
					var fixed = buffer.slice(0, -2) +","+buffer.slice(-2)
					var number = fixed.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".");
					element.value = number;
					
				}else if( element.value.length <= 1) {
					element.value = element.value + String.fromCharCode(keyCode);
				}
				
				return false;
			}
		</script>
	</head>
	<body>
		<form action="#">
			<p>Betrag:<br><input name="number" id="number" class="right" type="text" size="40" onkeydown="return addCommas(event, this)" /></p>
			<p><input type="reset" value="Reset" /></p>
		</form>
		<br/>
		1<br/>10<br/>1,00<br/>10,00<br/>100,00<br/>1.000,00<br/>10.000,00<br/>100.000,00<br/>1.000.000,00<br/>
	</body>
</html>
Devsome is offline  
Reply


Similar Threads Similar Threads
Wo mit USD PSC zahlen?
06/28/2015 - Technical Support - 0 Replies
Nabend, ich weiß nicht, ob ich mit meinem anliegen hier richtig bin. Falls nicht, bitte ich dies zu entschuldigen und den Thread dementsprechend zu removen. Zum Anliegen: Ich habe heute durch einen Trade eine Paysafecard bekommen, die aus den USA stammt bzw. dort gekauft wurde. Nun habe ich ich an mehreren Anlaufstellen (Steam, LoL, etc. ) versucht, diese einzulösen, aber ich bekomme stets folgende Fehlermeldung: "We regret we cannot process this transaction. The website is not...
[B]Icq UIN mit 6 zahlen [S]PSC!
08/18/2013 - Trading - 9 Replies
Hey... Ich verkaufe meine icq UIN (763826) Suche nur Psc Angebote per Pn, skype (xXcheatingXx) oder ICQ (494889280) MFG xXcheatingXx
TS3 Zahlen 1-32
11/21/2012 - Off Topic - 10 Replies
Hallo E*Pvper Ich suche derzeit 2 verschieden Farbliche Zahlen Packs einmal in Rot und das andere mal in Blau. Die Zahlen sollten von 1-32 gehen :) Wer welche hat bzw. weiß wo es welche gibt wäre nett, wenn mir jemand helfen könnte :) Mit Freundlichen Grüßen Sakiro
Zahlen für LoL?
12/28/2010 - League of Legends - 46 Replies
-



All times are GMT +2. The time now is 09:22.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.