Bedingte JavaScript-Anweisungen: IF, Else, Else IF (Beispiel)

Inhaltsverzeichnis:

Anonim

In diesem Tutorial lernen Sie:

  • Verwendung von bedingten Anweisungen
  • Verschiedene Arten von bedingten Anweisungen
  • If-Anweisung
  • Wenn ... Sonst Aussage
  • If… Else If… Else Aussage

Verwendung von bedingten Anweisungen

Bedingte Anweisungen werden verwendet, um den Ausführungsfluss basierend auf verschiedenen Bedingungen zu bestimmen. Wenn eine Bedingung wahr ist, können Sie eine Aktion ausführen, und wenn die Bedingung falsch ist, können Sie eine andere Aktion ausführen.

Verschiedene Arten von bedingten Anweisungen

In JavaScript gibt es hauptsächlich drei Arten von bedingten Anweisungen.

  1. If-Anweisung
  2. Wenn ... Sonst Aussage
  3. If… Else If… Else Aussage

If-Anweisung

Syntax:

if (condition){lines of code to be executed if condition is true}

Sie können die If-Anweisung verwenden, wenn Sie nur eine bestimmte Bedingung überprüfen möchten.

Versuchen Sie dies selbst:

 IF-Anweisungen !!! </ title><script type = "text />var age = prompt ("Bitte geben Sie Ihr Alter ein");if (Alter> = 18)document.write ("Sie sind ein Erwachsener<br />");if (Alter <18)document.write ("Sie sind KEIN Erwachsener<br />");</ script></ head><body></ body></ html></pre> <a id="menu-2"></a>
<h2>Wenn ... Sonst Aussage</h2>
<p>Syntax:</p>

<div id="container-5533149ee6411a5f99b370c693e87966"></div>
<pre translate="no">if (condition){lines of code to be executed if the condition is true}else{lines of code to be executed if the condition is false}</pre>
<p>Sie können If verwenden</p>
… .Else-Anweisung, wenn Sie zwei Bedingungen überprüfen und einen anderen Satz von Codes ausführen müssen.
<p>Versuchen Sie dies selbst:</p>
<pre translate="no" class="codeguru"><html><head><title> If… Else Statments !!! </ title><script type = "text />// Aktuelle Stunden abrufenvar Stunden = neues Datum (). getHours ();if (Stunden <12)document.write ("Guten Morgen !!!<br />");sonstdocument.write ("Guten Tag !!!<br />");</ script></ head><body></ body></ html></pre> <a id="menu-3"></a>
<h2>If… Else If… Else Aussage</h2>
<p>Syntax:</p>
<pre translate="no">if (condition1){lines of code to be executed if condition1 is true}else if(condition2){lines of code to be executed if condition2 is true}else{lines of code to be executed if condition1 is false and condition2 is false}</pre>
<p>Sie können If verwenden</p>
… .Else If… .Else-Anweisung, wenn Sie mehr als zwei Bedingungen überprüfen möchten.
<p>Versuchen Sie dies selbst:</p>
<pre translate="no" class="codeguru"><html><head><script type = "text />var one = prompt ("Geben Sie die erste Nummer ein");var two = prompt ("Geben Sie die zweite Nummer ein");eins = parseInt (eins);zwei = parseInt (zwei);if (eins == zwei)document.write (eins + "ist gleich" + zwei + ".");sonst wenn (eins <zwei)document.write (eins + "ist kleiner als" + zwei + ".");sonstdocument.write (eins + "ist größer als" + zwei + ".");</ script></ head><body></ body></ html></pre> <form class="hidden" code-box" name="sample"> Dieser Code kann bearbeitet werden. Klicken Sie zum Ausführen auf Ausführen<textarea name="codeguru"> </textarea>
<p><input type="submit" value="Lauf" style="background-color:#df5035;" color:#ffffff;"></p>


										</div>
									</article>
									
<div id="container-5533149ee6411a5f99b370c693e87966"></div>								</div>
							</div>
						</div>
					</div>
				</div>
				
<aside class="col-lg-4 sidebar sidebar--right">
	<div class="widget widget-popular-posts">
		<h2 class="widget-title">Beliebte Beiträge</h2>
		<ul class="post-list-small">
			<li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8225170-python-zip-file-with-example" title="Python-ZIP-Datei mit Beispiel" rel="bookmark"><img src="https://cdn.css-code.org/4452092/python_zip_file_with_example.png.webp" loading="lazy" alt="Python-ZIP-Datei mit Beispiel" title="Python-ZIP-Datei mit Beispiel" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8225170-python-zip-file-with-example" title="Python-ZIP-Datei mit Beispiel" rel="bookmark">Python-ZIP-Datei mit Beispiel 2025</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8225171-python-exception-handling-try-catch-finally" title="Python-Ausnahmebehandlung: Versuchen Sie, fangen Sie, schließlich" rel="bookmark"><img src="https://cdn.css-code.org/4507205/python_exception_handling_try-_catch-_finally.png.webp" loading="lazy" alt="Python-Ausnahmebehandlung: Versuchen Sie, fangen Sie, schließlich" title="Python-Ausnahmebehandlung: Versuchen Sie, fangen Sie, schließlich" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8225171-python-exception-handling-try-catch-finally" title="Python-Ausnahmebehandlung: Versuchen Sie, fangen Sie, schließlich" rel="bookmark">Python-Ausnahmebehandlung: Versuchen Sie, fangen Sie, schließlich 2025</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8225172-reading-and-writing-csv-files-in-python-using-csv-module-and-pandas" title="Lesen und Schreiben von CSV-Dateien in Python mit dem CSV-Modul & Pandas" rel="bookmark"><img src="https://cdn.css-code.org/1907258/reading_and_writing_csv_files_in_python_using_csv_module_ampamp_pandas.png.webp" loading="lazy" alt="Lesen und Schreiben von CSV-Dateien in Python mit dem CSV-Modul & Pandas" title="Lesen und Schreiben von CSV-Dateien in Python mit dem CSV-Modul & Pandas" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8225172-reading-and-writing-csv-files-in-python-using-csv-module-and-pandas" title="Lesen und Schreiben von CSV-Dateien in Python mit dem CSV-Modul & Pandas" rel="bookmark">Lesen und Schreiben von CSV-Dateien in Python mit dem CSV-Modul & Pandas 2025</a></h3>
					</div>
				</div>
			</li>
		</ul>
	</div>

	<div class="widget widget-popular-posts">
		<h2 class="widget-title">Die besten Bewertungen für den Monat</h2>
		<ul class="post-list-small">
			<li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003397-119-custom-header-for-videos" title="# 119: Benutzerdefinierter Header für Videos - CSS-Tricks" rel="bookmark"># 119: Benutzerdefinierter Header für Videos - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003398-120-choosing-a-membership-plugin-for-wordpress" title="# 120: Auswählen eines Mitgliedschafts-Plugins für WordPress - CSS-Tricks" rel="bookmark"># 120: Auswählen eines Mitgliedschafts-Plugins für WordPress - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003399-121-a-template-for-generic-pages" title="# 121: Eine Vorlage für generische Seiten - CSS-Tricks" rel="bookmark"># 121: Eine Vorlage für generische Seiten - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003400-124-building-the-demos-archive" title="# 124: Aufbau des Demo-Archivs - CSS-Tricks" rel="bookmark"># 124: Aufbau des Demo-Archivs - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003402-123-building-the-videos-archive-part-2-navigation" title="# 123: Erstellen des Videoarchivs, Teil 2 (Navigation) - CSS-Tricks" rel="bookmark"># 123: Erstellen des Videoarchivs, Teil 2 (Navigation) - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003403-122-building-the-videos-archive-part-1" title="# 122: Erstellen des Videoarchivs, Teil 1 - CSS-Tricks" rel="bookmark"># 122: Erstellen des Videoarchivs, Teil 1 - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003404-125-photoshopping-the-single-video-page" title="# 125: Photoshopping der einzelnen Videoseite - CSS-Tricks" rel="bookmark"># 125: Photoshopping der einzelnen Videoseite - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003405-127-building-the-single-video-page-part-2" title="# 127: Erstellen der einzelnen Videoseite, Teil 2 - CSS-Tricks" rel="bookmark"># 127: Erstellen der einzelnen Videoseite, Teil 2 - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003406-126-building-the-single-video-page-part-1" title="# 126: Erstellen der einzelnen Videoseite, Teil 1 - CSS-Tricks" rel="bookmark"># 126: Erstellen der einzelnen Videoseite, Teil 1 - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003407-128-styling-the-deals-page" title="# 128: Styling der Deals Seite - CSS-Tricks" rel="bookmark"># 128: Styling der Deals Seite - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003408-129-photoshopping-more-homepage-modules" title="# 129: Photoshopping Weitere Homepage-Module - CSS-Tricks" rel="bookmark"># 129: Photoshopping Weitere Homepage-Module - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003409-130-styling-the-article-archives-page" title="# 130: Gestaltung der Artikelarchivseite - CSS-Tricks" rel="bookmark"># 130: Gestaltung der Artikelarchivseite - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003410-131-building-more-homepage-modules" title="# 131: Weitere Homepage-Module erstellen - CSS-Tricks" rel="bookmark"># 131: Weitere Homepage-Module erstellen - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003411-132-intro-to-the-forums" title="# 132: Einführung in die Foren - CSS-Tricks" rel="bookmark"># 132: Einführung in die Foren - CSS-Tricks</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8003412-133-forums-wrangling-part-1" title="# 133: Foren Wrangling, Teil 1 - CSS-Tricks" rel="bookmark"># 133: Foren Wrangling, Teil 1 - CSS-Tricks</a></h3>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<div id="container-5533149ee6411a5f99b370c693e87966"></div>	<div class="widget widget-popular-posts">
		<h2 class="widget-title">Top Artikel</h2>
		<ul class="post-list-small">
			<li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8004321-76-a-tour-of-jquery-on-a-live-site" title="# 76: Eine Tour durch jQuery auf einer Live-Site - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/3107595/76_a_tour_of_jquery_on_a_live_site_css-tricks.png.webp" loading="lazy" alt="# 76: Eine Tour durch jQuery auf einer Live-Site - CSS-Tricks" title="# 76: Eine Tour durch jQuery auf einer Live-Site - CSS-Tricks" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8004321-76-a-tour-of-jquery-on-a-live-site" title="# 76: Eine Tour durch jQuery auf einer Live-Site - CSS-Tricks" rel="bookmark"># 76: Eine Tour durch jQuery auf einer Live-Site - CSS-Tricks 2025</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8004322-77-styling-an-individual-article" title="# 77: Styling eines einzelnen Artikels - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/7412640/77_styling_an_individual_article_css-tricks.png.webp" loading="lazy" alt="# 77: Styling eines einzelnen Artikels - CSS-Tricks" title="# 77: Styling eines einzelnen Artikels - CSS-Tricks" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8004322-77-styling-an-individual-article" title="# 77: Styling eines einzelnen Artikels - CSS-Tricks" rel="bookmark"># 77: Styling eines einzelnen Artikels - CSS-Tricks 2025</a></h3>
					</div>
				</div>
			</li><li class="post-list-small__item">
				<div class="post-list-small__entry clearfix">
					<div class="post-list-small__img-holder">
						<div class="thumb-container thumb-100"><a href="/8004323-72-building-a-website-2-of-3-htmlcss-conversion" title="# 72: Erstellen einer Website (2 von 3): HTML / CSS-Konvertierung - CSS-Tricks" rel="bookmark"><img src="https://cdn.css-code.org/8181516/72_building_a_website_2_of_3_htmlcss_conversion_css-tricks.png.webp" loading="lazy" alt="# 72: Erstellen einer Website (2 von 3): HTML / CSS-Konvertierung - CSS-Tricks" title="# 72: Erstellen einer Website (2 von 3): HTML / CSS-Konvertierung - CSS-Tricks" class="post-list-small__img--rounded" style="width:88px;height:88px" /></a></div>
					</div>
					<div class="post-list-small__body">
						<h3 class="post-list-small__entry-title"><a href="/8004323-72-building-a-website-2-of-3-htmlcss-conversion" title="# 72: Erstellen einer Website (2 von 3): HTML / CSS-Konvertierung - CSS-Tricks" rel="bookmark"># 72: Erstellen einer Website (2 von 3): HTML / CSS-Konvertierung - CSS-Tricks 2025</a></h3>
					</div>
				</div>
			</li>
		</ul>
	</div>
</aside>			</div>
		</div>
		
<footer class="footer footer--dark">
	<div class="container">
		<div class="footer__widgets">
			<div class="row">
				<div class="col-lg-4">
					<div class="widget">
						<h2 class="widget-title">Beliebte Beiträge</h2>
						<ul class="post-list-small">
							<li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224208-how-to-assign-a-job-and-cost-center-to-a-position-in-sap" title="So weisen Sie einen Job zu & Kostenstelle zu einer Position in SAP" rel="bookmark">So weisen Sie einen Job zu & Kostenstelle zu einer Position in SAP</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224209-sap-hr-time-management-pa51-pa53-pa61-pa62-pa63" title="SAP HR Zeitmanagement: PA51, PA53, PA61, PA62, PA63" rel="bookmark">SAP HR Zeitmanagement: PA51, PA53, PA61, PA62, PA63</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224210-sap-ppoce-how-to-create-an-organizational-unit" title="SAP PPOCE: So erstellen Sie eine Organisationseinheit" rel="bookmark">SAP PPOCE: So erstellen Sie eine Organisationseinheit</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224211-how-to-run-time-evaluation-sap-pt60" title="Laufzeitbewertung: SAP PT60" rel="bookmark">Laufzeitbewertung: SAP PT60</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8224212-sap-pa03-payroll-control-record-tutorial" title="SAP PA03: Tutorial zur Lohn- und Gehaltsabrechnung" rel="bookmark">SAP PA03: Tutorial zur Lohn- und Gehaltsabrechnung</a></h3>
									</div>
								</div>
							</li>
						</ul>
					</div>
				</div>
				<div class="col-lg-4">
					<div class="widget">
						<h2 class="widget-title">Tipp Der Redaktion</h2>
						<ul class="post-list-small">
						<li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225728-what-is-hadoop-introduction-architecture-ecosystem-components" title="Was ist Hadoop? Einführung, Architektur, Ökosystem, Komponenten" rel="bookmark">Was ist Hadoop? Einführung, Architektur, Ökosystem, Komponenten</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225729-15-best-jenkins-alternatives-and-competitors-open-sourcepaid" title="15 besten Jenkins-Alternativen & Wettbewerber (Open Source / Bezahlt)" rel="bookmark">15 besten Jenkins-Alternativen & Wettbewerber (Open Source / Bezahlt)</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225730-top-10-best-domain-registrars-in-2021-how-to-buy-a-domain" title="Top 10 der besten Domain-Registrare im Jahr 2021 (So kaufen Sie eine Domain)" rel="bookmark">Top 10 der besten Domain-Registrare im Jahr 2021 (So kaufen Sie eine Domain)</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225735-25-best-favicon-generators-in-2021" title="25 BESTE Favicon-Generatoren im Jahr 2021" rel="bookmark">25 BESTE Favicon-Generatoren im Jahr 2021</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8225736-20-best-web-analytics-tools-to-track-your-website-performance" title="20 besten Webanalyse-Tools zur Verfolgung der Leistung Ihrer Website" rel="bookmark">20 besten Webanalyse-Tools zur Verfolgung der Leistung Ihrer Website</a></h3>
									</div>
								</div>
							</li>
						</ul>
					</div>
				</div>
				<div class="col-lg-4">
					<div class="widget">
						<h2 class="widget-title">Top Artikel</h2>
						<ul class="post-list-small">
						<li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004031-opposite-direction-function" title="Gegenrichtung Funktion - CSS-Tricks" rel="bookmark">Gegenrichtung Funktion - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004032-sass-things-for-links" title="Sass Dinge für Links - CSS-Tricks" rel="bookmark">Sass Dinge für Links - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004034-power-function" title="Power-Funktion - CSS-Tricks" rel="bookmark">Power-Funktion - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004035-simple-asset-helper-functions" title="Einfache Asset Helper-Funktionen - CSS-Tricks" rel="bookmark">Einfache Asset Helper-Funktionen - CSS-Tricks</a></h3>
									</div>
								</div>
							</li><li class="post-list-small__item">
								<div>
									<div>
										<h3 class="post-list-small__entry-title"><a href="/8004036-px-to-em-functions" title="Px to Em Funktionen - CSS-Tricks" rel="bookmark">Px to Em Funktionen - CSS-Tricks</a></h3>
									</div>
								</div>
							</li>
						</ul>
					</div>
				</div>
			</div>
			<p>© Copyright de.css-code.org, 2025 April | 
				<a href="https://de.css-code.org/about-site" title="Über Site">Über Site</a> | 
				<a href="https://de.css-code.org/contacts" title="Kontakte">Kontakte</a> | 
				<a href="https://de.css-code.org/privacy-policy" title="Datenschutz-Bestimmungen">Datenschutz-Bestimmungen</a>.
			</p>
			
		</div>
	</div>
</footer>		
<link href="https://css-code.org/template/css/style.min.css" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" />	</body>
</html>