- HTML: ハイパーテキストマークアップ言語 | MDN, - HTML(超文本标记语言) | ">
Sort Score
Result 10 results
Languages All
Labels All
Results 6,021 - 6,030 of 8,776 for

view

(0.07 sec)
  1. <video>:视频嵌入元素 - HTML(超文本标记语言) | MDN

    developer.mozilla.org/zh-CN/docs/Web/HTML/Eleme...
  2. Using classes - JavaScript | MDN

    JavaScript is a prototype-based language — an object's behaviors are specified by its own properties and its prototype's properties. However, with the addition of classes, the creation of hierarchies of objects and the inheritance of properties and their values are much more in line with other object-oriented languages such as Java. In this section, we will demonstrate how objects can be created from classes.... View this page on GitHub • Report...

    developer.mozilla.org/en-US/docs/Web/JavaScript...
  3. <input type="text"> - HTML: ハイパーテキストマークアップ言語 | MDN

    要素の text 型は、基本的な単一行のテキスト入力欄を生成します。... View this page on GitHub • Report...

    developer.mozilla.org/ja/docs/Web/HTML/Element/...
  4. <input type="time"> - HTML(超文本标记语言) | MDN

    类型为 time 的 元素,旨在让用户轻松输入时间(小时和分钟,以及可选的秒)。... View this page on GitHub • Report...

    developer.mozilla.org/zh-CN/docs/Web/HTML/Eleme...
  5. <input type="tel"> - HTML(超文本标记语言) | MDN

    tel 类型的 元素用于让用户输入和编辑电话号码。不同于 ,在提交表单之前,输入值不会被自动验证为特定格式,因为世界各地的电话号码格式差别很大。... View this page on GitHub • Report...

    developer.mozilla.org/zh-CN/docs/Web/HTML/Eleme...
  6. HTML 表の高度な機能とアクセシビリティ - ウェブ開発を学ぶ | MDN

    このモジュールの 2 番目の記事では、HTML テーブルのより高度な機能 (キャプション/要約、行をテーブルのヘッダー、本文、フッターのセクションにグループ化するなど) や、視覚障碍のあるユーザーのためのテーブルのアクセシビリティについて調べます。... View this page on GitHub • Report...

    developer.mozilla.org/ja/docs/Learn/HTML/Tables...
  7. Inheritance and the prototype chain - JavaScrip...

    In programming, inheritance refers to passing down characteristics from a parent to a child so that a new piece of code can reuse and build upon the features of an existing one. JavaScript implements inheritance by using objects. Each object has an internal link to another object called its prototype. That prototype object has a prototype of its own, and so on until an object is reached with null as its prototype. By definition, null has no prototype and acts as the final link in this prototype chain. It is possible to mutate any member of the prototype chain or even swap out the prototype at runtime, so concepts like static dispatching do not exist in JavaScript.... View this page on GitHub • Report...

    developer.mozilla.org/en-US/docs/Web/JavaScript...
  8. Using Web Workers - Web APIs | MDN

    Web Workers are a simple means for web content to run scripts in background threads. The worker thread can perform tasks without interfering with the user interface. In addition, they can make network requests using the fetch() or XMLHttpRequest APIs. Once created, a worker can send messages to the JavaScript code that created it by posting messages to an event handler specified by that code (and vice versa).... View this page on GitHub • Report...

    developer.mozilla.org/en-US/docs/Web/API/Web_Wo...
  9. Primeros pasos con HTML - Aprende desarrollo we...

    En este artículo, cubrimos los conceptos básicos de HTML. Para empezar, este artículo define elementos, atributos y todos los demás términos importantes que puedas haber escuchado. También explica dónde encajan en HTML. Aprenderás cómo se estructuran los elementos HTML, cómo se estructura una página HTML típica y otras características importantes del lenguaje básico. ¡En el camino, también tendrás la oportunidad de jugar con HTML!... View this page on GitHub • Report...

    developer.mozilla.org/es/docs/Learn/HTML/Introd...
  10. Making decisions in your code — conditionals - ...

    In any programming language, the code needs to make decisions and carry out actions accordingly depending on different inputs. For example, in a game, if the player's number of lives is 0, then it's game over. In a weather app, if it is being looked at in the morning, show a sunrise graphic; show stars and a moon if it is nighttime. In this article, we'll explore how so-called conditional statements work in JavaScript.... View this page on GitHub • Report...

    developer.mozilla.org/en-US/docs/Learn/JavaScri...