suchen
Article Tags
HTML-Tutorial
Die Rolle von HTML-Basis-Tags

Die Rolle von HTML-Basis-Tags

HTML-Tags sind spezielle Elemente, die die Struktur und den Inhalt von Webseiten definieren. Ihre Funktionen sind wie folgt: (1) Strukturierte Tags definieren die Struktur des gesamten Dokuments, der Metadaten und des sichtbaren Inhalts. (2) Textformatierungs-Tags werden zum Erstellen von Titeln, Absätzen, fettem Text und zum Einfügen von Zeilenumbrüchen verwendet. (3) Link-Tags erstellen Hyperlinks zu anderen Seiten. (4) Fügen Sie das Bild in das Bild-Tag ein. (5) Listen-Tags erstellen ungeordnete und geordnete Listen. (6) Das Tabellen-Tag erstellt eine Tabelle und gibt Zeilen, Überschriften und Datenzellen an. (7) Frame-Tags werden in andere Webseiten oder Anwendungen eingebettet. (8) Andere Tags stellen Metadaten, Seitentitel, Stile und JavaScript-Code bereit.

Apr 22, 2024 pm 12:18 PM
Welche HTML-Tags müssen nicht geschlossen werden?

Welche HTML-Tags müssen nicht geschlossen werden?

Es gibt 14 HTML-Tags, die nicht geschlossen werden müssen: Tags ohne Inhalt:
,


, , , , , Tags, die nur Text enthalten: <base>, <command>, <keygen>, <param>Spezielle Tags: <!DOCTYPE>, <html>, <head>, <body></p><span class="Articlelist_txts_time">Apr 22, 2024 pm 12:03 PM</span></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758641.html' title='Was sind die öffentlichen Attribute von HTML-Tags?' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042212002873342.jpg?x-oss-process=image/resize,p_40" alt="Was sind die öffentlichen Attribute von HTML-Tags?" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758641.html' title='Was sind die öffentlichen Attribute von HTML-Tags?' class="Articlelist_txts_title">Was sind die öffentlichen Attribute von HTML-Tags?</a></h2><p class="Articlelist_txts_p">Öffentliche HTML-Attribute gelten für alle HTML-Elemente und werden zum Festlegen grundlegender Eigenschaften verwendet, einschließlich: Festlegen eines eindeutigen Bezeichners (id), Festlegen des Klassennamens (class), Festlegen des Eingabeaufforderungstexts (title), Festlegen des Inline-Einstellungsstils (style), Festlegen des Sprachcodes (lang), Festlegen der Einstellung Legen Sie die Schreibrichtung fest (dir), legen Sie den Index der Tabulatortaste fest (tabindex), legen Sie die Tastenkombination fest (accesskey), blenden Sie das Element aus (hidden) und ermöglichen Sie Benutzern das Bearbeiten des Inhalts (contenteditable).</p><span class="Articlelist_txts_time">Apr 22, 2024 pm 12:00 PM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">css</span><span class="Articlelist_txts_infoss ">access</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758634.html' title='Welche Attribute haben HTML-Tags?' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211571873505.jpg?x-oss-process=image/resize,p_40" alt="Welche Attribute haben HTML-Tags?" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758634.html' title='Welche Attribute haben HTML-Tags?' class="Articlelist_txts_title">Welche Attribute haben HTML-Tags?</a></h2><p class="Articlelist_txts_p">HTML-Attribute sind Werkzeuge zum Bereitstellen zusätzlicher Informationen zu HTML-Elementen mithilfe von Attributnamen-Wert-Paaren. Zu den allgemeinen Attributen gehören ID (Element identifizieren), Klasse (Elemente gruppieren), Stil (Elementstil festlegen), SRC (Link-Ressource), ALT (alternativer Bildtext), Titel (Tooltip-Text), HREF (Hyperlink-Ziel). Eigenschaftswerte können Zeichenfolgen, Zahlen, boolesche Werte oder Aufzählungen sein. Die Reihenfolge der Eigenschaftspriorität ist CSS, Inline-Stil und Standardelementstil.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:57 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">css</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758630.html' title='Was sind die gemeinsamen Merkmale von HTML-Tags?' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211542029501.jpg?x-oss-process=image/resize,p_40" alt="Was sind die gemeinsamen Merkmale von HTML-Tags?" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758630.html' title='Was sind die gemeinsamen Merkmale von HTML-Tags?' class="Articlelist_txts_title">Was sind die gemeinsamen Merkmale von HTML-Tags?</a></h2><p class="Articlelist_txts_p">HTML-Tags sind eine Reihe von Tags, die zum Definieren von Webseitenelementen verwendet werden und mehrere gemeinsame Merkmale aufweisen: Der Tag-Name identifiziert den Tag-Typ (z. B. <p> für einen Absatz). Attribute stellen weitere Informationen zum Tag bereit (z. B. <p style="color: red;">). Attributwerte müssen in Anführungszeichen gesetzt werden. Tags können in anderen Tags verschachtelt werden. Die meisten HTML-Tags erscheinen paarweise und haben ein schließendes Tag (z. B. </p>). Die Browserunterstützung für Tags variiert von Tag zu Tag.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:54 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">键值对</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758625.html' title='Gängige HTML-Tags und ihre Funktionen' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211511973851.jpg?x-oss-process=image/resize,p_40" alt="Gängige HTML-Tags und ihre Funktionen" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758625.html' title='Gängige HTML-Tags und ihre Funktionen' class="Articlelist_txts_title">Gängige HTML-Tags und ihre Funktionen</a></h2><p class="Articlelist_txts_p">Zu den gängigen HTML-Tags gehören Struktur-Tags (zum Definieren von Webseiteninhalten), Text-Tags (zum Formatieren von Text), Link-Tags (zum Erstellen von Hyperlinks), Bild-Tags, Formular-Tags, Medien-Tags, Tabellen-Tags und andere Tags (z. B Universalcontainer und vorformatierte Textblöcke). Zusammen werden diese Tags verwendet, um eine Website zu erstellen, das Seitenlayout zu definieren, die Textdarstellung zu steuern und interaktive Elemente hinzuzufügen.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:51 AM</span></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758608.html' title='Was sind die am häufigsten verwendeten Tags und Attribute in HTML?' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211421417879.jpg?x-oss-process=image/resize,p_40" alt="Was sind die am häufigsten verwendeten Tags und Attribute in HTML?" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758608.html' title='Was sind die am häufigsten verwendeten Tags und Attribute in HTML?' class="Articlelist_txts_title">Was sind die am häufigsten verwendeten Tags und Attribute in HTML?</a></h2><p class="Articlelist_txts_p">Zu den gängigen HTML-Tags gehören: Titel (h1-h6), Absatz (p), Liste (ul, ol), Link (a), Bild (img), Tabelle (table). Zu den Attributen gehören: id (Bezeichner), class (CSS-Klasse), href (Linkziel), src (Bildquelle), alt (Alternativtext), width/height (Abmessungen) und style (CSS-Stil).</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:42 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">css</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758600.html' title='Häufig verwendete Tags und Verwendung von HTML' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211391968514.jpg?x-oss-process=image/resize,p_40" alt="Häufig verwendete Tags und Verwendung von HTML" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758600.html' title='Häufig verwendete Tags und Verwendung von HTML' class="Articlelist_txts_title">Häufig verwendete Tags und Verwendung von HTML</a></h2><p class="Articlelist_txts_p">Die häufigsten Tags in HTML fallen in die folgenden Kategorien: Strukturelle Tags: Definieren das Layout und die Struktur einer Webseite. Text-Tag: Formatierter Text. Link-Tags: Erstellen Sie Links zu anderen Webseiten oder Dateien. Bild-Tag: Bild anzeigen. Formular-Tag: Erstellen Sie ein Formular, in das Benutzer Informationen eingeben können. Andere gängige Tags: Werden zum Gruppieren von Inhalten, zum Einbetten von Text, zum Einbetten anderer Webseiten und zum Bereitstellen von Metadaten verwendet.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:39 AM</span></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758584.html' title='Der Unterschied zwischen HTML5 und Web-Frontend' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211271725861.jpg?x-oss-process=image/resize,p_40" alt="Der Unterschied zwischen HTML5 und Web-Frontend" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758584.html' title='Der Unterschied zwischen HTML5 und Web-Frontend' class="Articlelist_txts_title">Der Unterschied zwischen HTML5 und Web-Frontend</a></h2><p class="Articlelist_txts_p">HTML5 ist die Auszeichnungssprache für die Struktur und den Inhalt von Webseiten. Das Web-Frontend ist Teil der Benutzeroberfläche, einschließlich HTML5, CSS und JavaScript. HTML5 konzentriert sich auf die Inhaltsstruktur und das Web-Frontend konzentriert sich auf die Benutzererfahrung. HTML5 bietet neue Elemente und Funktionen, die Web-Frontends nutzen, um interaktive und dynamische Inhalte zu erstellen. HTML5 wird vom W3C gepflegt und Web-Frontend ist ein sich schnell entwickelnder Bereich, in dem ständig neue Technologien und Frameworks eingeführt werden. HTML5 ist hauptsächlich für Anfänger gedacht, während Web-Frontend fortgeschrittene Programmierkenntnisse erfordert.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:27 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">css</span><span class="Articlelist_txts_infoss ">vue</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758576.html' title='Der Unterschied zwischen HTML und Web-Frontend' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211212114414.jpg?x-oss-process=image/resize,p_40" alt="Der Unterschied zwischen HTML und Web-Frontend" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758576.html' title='Der Unterschied zwischen HTML und Web-Frontend' class="Articlelist_txts_title">Der Unterschied zwischen HTML und Web-Frontend</a></h2><p class="Articlelist_txts_p">HTML ist eine Auszeichnungssprache, die zum Erstellen der Struktur von Webseiten verwendet wird, während das Web-Frontend die Techniken und Fähigkeiten zum Entwerfen und Entwickeln von Website-Benutzeroberflächen umfasst, einschließlich: Verschiedene Rollen: HTML konzentriert sich auf Inhalt und Struktur, das Web-Frontend ist verantwortlich für Aussehen und Interaktivität. Die Anforderungen an die Fähigkeiten variieren: HTML erfordert grundlegende Programmierkenntnisse, Web-Frontend erfordert umfassendere Kenntnisse, einschließlich Designprinzipien und Programmierung. Der Umfang ist unterschiedlich: HTML befasst sich nur mit der Webseitenstruktur, das Web-Frontend deckt alle Aspekte der Benutzeroberfläche ab, einschließlich responsivem Design und Leistungsoptimierung. Die Tools unterscheiden sich: HTML kann mit einem Texteditor geschrieben werden, während die Web-Frontend-Entwicklung Tools wie Code-Editoren und Build-Systeme erfordert.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:21 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">css</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758569.html' title='Der Unterschied zwischen HTML-Front-End und Back-End' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211181655502.jpg?x-oss-process=image/resize,p_40" alt="Der Unterschied zwischen HTML-Front-End und Back-End" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758569.html' title='Der Unterschied zwischen HTML-Front-End und Back-End' class="Articlelist_txts_title">Der Unterschied zwischen HTML-Front-End und Back-End</a></h2><p class="Articlelist_txts_p">Das HTML-Frontend ist für die Benutzeroberfläche, Interaktion und Gestaltung verantwortlich und verwendet HTML, CSS und JavaScript, um Webseiten im Client-Browser darzustellen. Das Backend übernimmt die Geschäftslogik, die Datenverwaltung und die Interaktion mit dem Frontend. Dabei werden Technologie-Stacks wie Java, Python und Node.js verwendet, die auf dem Server ausgeführt werden und für Benutzer unsichtbar sind.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:18 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">css</span><span class="Articlelist_txts_infoss ">python</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758559.html' title='Zu welcher Programmiersprache gehört HTML?' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211121692864.jpg?x-oss-process=image/resize,p_40" alt="Zu welcher Programmiersprache gehört HTML?" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758559.html' title='Zu welcher Programmiersprache gehört HTML?' class="Articlelist_txts_title">Zu welcher Programmiersprache gehört HTML?</a></h2><p class="Articlelist_txts_p">HTML ist keine Programmiersprache, sondern eine Auszeichnungssprache, die zum Definieren der Struktur einer Webseite, wie etwa Überschriften, Absätze und Bilder, verwendet wird. Sie steuert nicht die Programmausführung, verarbeitet keine Daten und führt keine Berechnungen durch.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:12 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">css</span><span class="Articlelist_txts_infoss ">python</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758555.html' title='Was sind die Vorteile von HTML5?' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211092115669.jpg?x-oss-process=image/resize,p_40" alt="Was sind die Vorteile von HTML5?" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758555.html' title='Was sind die Vorteile von HTML5?' class="Articlelist_txts_title">Was sind die Vorteile von HTML5?</a></h2><p class="Articlelist_txts_p">Zu den Hauptvorteilen von HTML5 gehören: Semantisches Markup: vermittelt klar die Struktur und Bedeutung des Inhalts. Multimedia-Unterstützung: native Wiedergabe von Video und Audio. Canvas: Erstellen Sie Bewegungsgrafiken und Animationen. Lokaler Speicher: Der Client speichert Daten und greift sitzungsübergreifend darauf zu. Geolokalisierung: Rufen Sie die geografischen Standortinformationen des Benutzers ab. WebSockets: Kontinuierliche Verbindung zwischen Browser und Server. Mobilfreundlich: Funktioniert auf einer Vielzahl von Geräten. Sicherheit: CSP und CORS schützen vor Cyber-Bedrohungen. Benutzerfreundlichkeit: Einfach zu erlernen und zu verwenden. Support: Umfangreiche Unterstützung für alle gängigen Browser und Geräte.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:09 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">地理位置</span><span class="Articlelist_txts_infoss ">sessionstorage</span></div></div></div><div class="Articlelist_txts"><a href='https://m.php.cn/de/faq/758537.html' title='Woraus besteht HTML5?' class="Articlelist_txtsimg"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/article/202404/22/2024042211032176189.jpg?x-oss-process=image/resize,p_40" alt="Woraus besteht HTML5?" /></a><div class="Articlelist_txts_info"><h2><a href='https://m.php.cn/de/faq/758537.html' title='Woraus besteht HTML5?' class="Articlelist_txts_title">Woraus besteht HTML5?</a></h2><p class="Articlelist_txts_p">HTML5 besteht aus Dokumentstruktur, Layout (Flexbox, Grid), Multimedia, Canvas, Formularen, APIs und anderen Funktionen, einschließlich semantischem Markup, Webspeicher und Web-Sockets, um eine umfassendere, flexiblere und interaktivere Webentwicklungserfahrung zu bieten.</p><span class="Articlelist_txts_time">Apr 22, 2024 am 11:03 AM</span><div class="Articlelist_txts_infos"><!-- 紫色背景白色文本class:on --><span class="Articlelist_txts_infoss on">地理位置</span><span class="Articlelist_txts_infoss ">排列</span><span class="Articlelist_txts_infoss ">sessionstorage</span></div></div></div><ul class="pagination"><div class="mngfPage"><ul class="page"><a href="/de/div-tutorial.html?p=49"><</a> <a href="/de/div-tutorial.html?p=49">49</a><a href="javascript:;" class="active">50</a><a href="javascript:;" class="disabled_page">...</a><a href="/de/div-tutorial.html?p=107">107</a><a href="/de/div-tutorial.html?p=108">108</a> <a href="/de/div-tutorial.html?p=51">></a></ul></div></ul></div><div class="AI_ToolDetails_main4sR"><div class="phpgenera_Details_mainR3"><div class="phpmain1_4R_readrank"><div class="phpmain1_4R_readrank_top"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="/static/imghwm/hottools2.png" alt="" /><h2>Hot-Tools-Tags</h2></div><div class="phpgenera_Details_mainR3_bottom"><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/de/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_45,w_45" alt="Undresser.AI Undress" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/de/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">Undresser.AI Undress</a></h2><p>KI-gestützte App zum Erstellen realistischer Aktfotos</p></div></div><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/de/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_45,w_45" alt="AI Clothes Remover" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/de/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">AI Clothes Remover</a></h2><p>Online-KI-Tool zum Entfernen von Kleidung aus Fotos.</p></div></div><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/de/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_45,w_45" alt="Undress AI Tool" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/de/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">Undress AI Tool</a></h2><p>Ausziehbilder kostenlos</p></div></div><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/de/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_45,w_45" alt="Clothoff.io" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/de/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">Clothoff.io</a></h2><p>KI-Kleiderentferner</p></div></div><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_45,w_45" alt="Video Face Swap" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">Video Face Swap</a></h2><p>Tauschen Sie Gesichter in jedem Video mühelos mit unserem völlig kostenlosen KI-Gesichtstausch-Tool aus!</p></div></div></div><!-- <div class="phpgenera_Details_mainR3_more"><a href="">Show More</a></div> --></div></div><div class="phpgenera_Details_mainR4"><div class="phpmain1_4R_readrank"><div class="phpmain1_4R_readrank_top"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="/static/imghwm/hotarticle2.png" alt="" /><h2>Heißer Artikel</h2></div><div class="phpgenera_Details_mainR4_bottom"><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/1796785841.html" title="Assassin's Creed Shadows: Seashell Riddle -Lösung" class="phpgenera_Details_mainR4_bottom_title">Assassin's Creed Shadows: Seashell Riddle -Lösung</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><span>3 Wochen vor</span><span>ByDDD</span></div></div><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/1796789525.html" title="Was ist neu in Windows 11 KB5054979 und wie Sie Update -Probleme beheben" class="phpgenera_Details_mainR4_bottom_title">Was ist neu in Windows 11 KB5054979 und wie Sie Update -Probleme beheben</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><span>3 Wochen vor</span><span>ByDDD</span></div></div><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/1796785857.html" title="Wo kann man die Kransteuerungsschlüsselkarten in Atomfall finden" class="phpgenera_Details_mainR4_bottom_title">Wo kann man die Kransteuerungsschlüsselkarten in Atomfall finden</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><span>3 Wochen vor</span><span>ByDDD</span></div></div><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/1796784440.html" title="&lt;🎜&gt;: Dead Rails - wie man jede Herausforderung abschließt" class="phpgenera_Details_mainR4_bottom_title">&lt;🎜&gt;: Dead Rails - wie man jede Herausforderung abschließt</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><span>4 Wochen vor</span><span>ByDDD</span></div></div><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/1796784000.html" title="Atomfall Guide: Gegenstandsstandorte, Questführer und Tipps" class="phpgenera_Details_mainR4_bottom_title">Atomfall Guide: Gegenstandsstandorte, Questführer und Tipps</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><span>1 Monate vor</span><span>ByDDD</span></div></div></div><div class="phpgenera_Details_mainR3_more"><a href="https://m.php.cn/de/article.html">Mehr anzeigen</a></div></div></div><div class="phpgenera_Details_mainR4"><div class="phpmain1_4R_readrank"><div class="phpmain1_4R_readrank_top"><img onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" class="lazy" src="/static/imghwm/default1.png" onerror="this.onerror=''; this.src='/static/imghwm/default1.png'" data-src="/static/imghwm/hotarticle2.png" alt="" /><h2>Heiße Werkzeuge</h2></div><div class="phpgenera_Details_mainR4_bottom"><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/toolset/development-tools/1351" title="Sammlung der Laufzeitbibliothek vc9-vc14 (32+64 Bit) (Link unten)" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" src="/static/imghw/default1.png" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" data-src="https://img.php.cn/upload/manual/000/000/001/5a6a896b53dea437.png?x-oss-process=image/resize,m_fill,h_45,w_45" alt="Sammlung der Laufzeitbibliothek vc9-vc14 (32+64 Bit) (Link unten)" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/toolset/development-tools/1351" title="Sammlung der Laufzeitbibliothek vc9-vc14 (32+64 Bit) (Link unten)" class="phpmain_tab2_mids_title">Sammlung der Laufzeitbibliothek vc9-vc14 (32+64 Bit) (Link unten)</a></h2><p>Laden Sie die Sammlung der Laufzeitbibliotheken herunter, die für die Installation von phpStudy erforderlich sind</p></div></div><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/toolset/development-tools/1479" title="VC9 32-Bit" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" src="/static/imghw/default1.png" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" data-src="https://img.php.cn/upload/manual/000/000/001/5af2c4207a616756.jpg?x-oss-process=image/resize,m_fill,h_45,w_45" alt="VC9 32-Bit" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/toolset/development-tools/1479" title="VC9 32-Bit" class="phpmain_tab2_mids_title">VC9 32-Bit</a></h2><p>VC9 32-Bit-Laufzeitbibliothek für die integrierte Installationsumgebung von phpstudy</p></div></div><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/toolset/development-tools/714" title="Vollversion der PHP-Programmierer-Toolbox" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" src="/static/imghw/default1.png" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" data-src="https://img.php.cn/upload/manual/000/000/001/5a718c0e5be0a511.jpg?x-oss-process=image/resize,m_fill,h_45,w_45" alt="Vollversion der PHP-Programmierer-Toolbox" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/toolset/development-tools/714" title="Vollversion der PHP-Programmierer-Toolbox" class="phpmain_tab2_mids_title">Vollversion der PHP-Programmierer-Toolbox</a></h2><p>Programmer Toolbox v1.0 PHP Integrierte Umgebung</p></div></div><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/toolset/development-tools/1481" title="VC11 32-Bit" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" src="/static/imghw/default1.png" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" data-src="https://img.php.cn/upload/manual/000/000/001/5af2c4684dbe4408.jpg?x-oss-process=image/resize,m_fill,h_45,w_45" alt="VC11 32-Bit" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/toolset/development-tools/1481" title="VC11 32-Bit" class="phpmain_tab2_mids_title">VC11 32-Bit</a></h2><p>VC11 32-Bit-Laufzeitbibliothek für die integrierte Installationsumgebung von phpstudy</p></div></div><div class="phpmain_tab2_mids_top"><a href="https://m.php.cn/toolset/development-tools/93" title="SublimeText3 chinesische Version" class="phpmain_tab2_mids_top_img"><img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" src="/static/imghw/default1.png" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" data-src="https://img.php.cn/upload/manual/000/000/001/58a1753774be3478.png?x-oss-process=image/resize,m_fill,h_45,w_45" alt="SublimeText3 chinesische Version" /></a><div class="phpmain_tab2_mids_info"><h2><a href="https://m.php.cn/toolset/development-tools/93" title="SublimeText3 chinesische Version" class="phpmain_tab2_mids_title">SublimeText3 chinesische Version</a></h2><p>Chinesische Version, sehr einfach zu bedienen</p></div></div></div><div class="phpgenera_Details_mainR3_more"><a href="https://m.php.cn/toolset/development-tools">Mehr anzeigen</a></div></div></div><div class="phpgenera_Details_mainR4"><div class="phpmain1_4R_readrank"><div class="phpmain1_4R_readrank_top"><img src="/static/imghwm/hotarticle2.png" alt="" /><h2>Heiße Themen</h2></div><div class="phpgenera_Details_mainR4_bottom"><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/gmailyxdlrkzn" title="Wo ist der Login-Zugang für Gmail-E-Mail?" class="phpgenera_Details_mainR4_bottom_title">Wo ist der Login-Zugang für Gmail-E-Mail?</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/eyess.png" alt="" /><span>7689</span></div><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/tiezi.png" alt="" /><span>15</span></div></div></div><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/java-tutorial" title="Java-Tutorial" class="phpgenera_Details_mainR4_bottom_title">Java-Tutorial</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/eyess.png" alt="" /><span>1639</span></div><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/tiezi.png" alt="" /><span>14</span></div></div></div><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/cakephp-tutor" title="CakePHP-Tutorial" class="phpgenera_Details_mainR4_bottom_title">CakePHP-Tutorial</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/eyess.png" alt="" /><span>1393</span></div><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/tiezi.png" alt="" /><span>52</span></div></div></div><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/laravel-tutori" title="Laravel-Tutorial" class="phpgenera_Details_mainR4_bottom_title">Laravel-Tutorial</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/eyess.png" alt="" /><span>1287</span></div><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/tiezi.png" alt="" /><span>25</span></div></div></div><div class="phpgenera_Details_mainR4_bottoms"><h2><a href="https://m.php.cn/de/faq/php-tutorial" title="PHP-Tutorial" class="phpgenera_Details_mainR4_bottom_title">PHP-Tutorial</a></h2><div class="phpgenera_Details_mainR4_bottoms_info"><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/eyess.png" alt="" /><span>1229</span></div><div class="phpgenera_Details_mainR4_bottoms_infos"><img src="/static/imghwm/tiezi.png" alt="" /><span>29</span></div></div></div></div><div class="phpgenera_Details_mainR3_more"><a href="https://m.php.cn/de/faq/zt">Mehr anzeigen</a></div></div></div></div></div></main><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!</p></div><div class="footermid"><a href="https://m.php.cn/de/about/us.html">Über uns</a><a href="https://m.php.cn/de/about/disclaimer.html">Haftungsausschluss</a><a href="https://m.php.cn/de/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = "0";</script><!-- Matomo --><script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="https://tongji.php.cn/"; _paq.push(['setTrackerUrl', u+'matomo.php']); _paq.push(['setSiteId', '9']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); </script><!-- End Matomo Code --><script> // 通用函数,用于显示或隐藏元素 function toggleElementsDisplay(className, show) { const elements = document.getElementsByClassName(className); for (let i = 0; i < elements.length; i++) { elements[i].style.display = show ? "block" : "none"; } } // 绑定事件监听器 function bindEventListeners() { const toggleDisplay = (className, show, eventId) => { document.getElementById(eventId).addEventListener("click", (event) => { event.preventDefault(); toggleElementsDisplay(className, show); }); }; // 控制 m_editormain12main 的显示和隐藏 toggleDisplay("m_editormain12main", true, "m_editormain12dis"); toggleDisplay("m_editormain12main", false, "m_editormain12dis_close"); toggleDisplay("m_editormain12main", false, "m_editormain12main_topi"); // 控制 m_menu 的显示和隐藏 toggleDisplay("m_menu", true, "lan1sp"); toggleDisplay("m_menu", false, "m_editormain12main_topi_sp"); // 控制 m_menu_lang 的显示和隐藏 toggleDisplay("m_menu_lang", true, "lan1"); toggleDisplay("m_menu_lang", false, "m_editormain12main_topi_lan"); } // 在页面加载完成后绑定事件监听器 window.onload = bindEventListeners; layui.use(function () { var util = layui.util; util.fixbar({ on: { mouseenter: function (type) { layer.tips(type, this, { tips: 4, fixed: true, }); }, mouseleave: function (type) { layer.closeAll("tips"); }, }, }); }); // 获取关闭按钮 const closeButton = document.querySelector(".phpgenera_Details_mainR1_close"); // 获取容器元素 const container = document.querySelector(".phpgenera_Details_mainR1"); // 添加点击事件监听器 closeButton.addEventListener("click", (event) => { event.preventDefault(); // 阻止默认的<a>点击行为 container.style.display = "none"; // 隐藏容器 }); </script></body></html>