mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
543 lines
25 KiB
HTML
543 lines
25 KiB
HTML
|
|
|
|
<!DOCTYPE html>
|
|
<!--[if IE]><![endif]-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>DOM Elements - React</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta property="og:title" content="DOM Elements - React">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://facebook.github.io/react/docs/dom-elements.html">
|
|
<meta property="og:image" content="https://facebook.github.io/react/img/logo_og.png">
|
|
<meta property="og:description" content="A JavaScript library for building user interfaces">
|
|
<meta property="fb:app_id" content="623268441017527">
|
|
|
|
<link rel="shortcut icon" href="/react/favicon.ico">
|
|
<link rel="alternate" type="application/rss+xml" title="React" href="https://facebook.github.io/react/feed.xml">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css" />
|
|
<link rel="stylesheet" href="/react/css/syntax.css">
|
|
<link rel="stylesheet" href="/react/css/codemirror.css">
|
|
<link rel="stylesheet" href="/react/css/react.css">
|
|
|
|
<script src="//use.typekit.net/vqa1hcx.js"></script>
|
|
<script>try{Typekit.load();}catch(e){}</script>
|
|
|
|
<!--[if lte IE 8]>
|
|
<script src="https://unpkg.com/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
|
|
<script src="https://unpkg.com/es5-shim@4.5.9/es5-shim.min.js"></script>
|
|
<script src="https://unpkg.com/es5-shim@4.5.9/es5-sham.min.js"></script>
|
|
<![endif]-->
|
|
<script src="https://unpkg.com/docsearch.js@1.5.0/dist/cdn/docsearch.min.js"></script>
|
|
<script src="https://unpkg.com/codemirror@5.15.2"></script>
|
|
<script src="https://unpkg.com/codemirror@5.15.2/mode/javascript/javascript.js"></script>
|
|
<script src="https://unpkg.com/codemirror@5.15.2/mode/xml/xml.js"></script>
|
|
<script src="https://unpkg.com/codemirror@5.15.2/mode/jsx/jsx.js"></script>
|
|
<script src="https://unpkg.com/prop-types/prop-types.min.js"></script>
|
|
<script src="https://unpkg.com/react/umd/react.production.min.js"></script>
|
|
<script src="https://unpkg.com/react-dom/umd/react-dom.production.min.js"></script>
|
|
<script src="https://unpkg.com/create-react-class/create-react-class.min.js"></script>
|
|
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
|
|
<script src="/react/js/live_editor.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="nav-main">
|
|
<div class="wrap">
|
|
<a class="nav-home" href="/react/">
|
|
<img class="nav-logo" src="/react/img/logo.svg" width="36" height="36">
|
|
React
|
|
</a>
|
|
<div class="nav-lists">
|
|
<ul class="nav-site nav-site-internal">
|
|
<li><a href="/react/docs/hello-world.html" class="active">Docs</a></li>
|
|
<li><a href="/react/tutorial/tutorial.html">Tutorial</a></li>
|
|
<li><a href="/react/community/support.html">Community</a></li>
|
|
<li><a href="/react/blog/">Blog</a></li>
|
|
<li class="nav-site-search">
|
|
<input id="algolia-doc-search" type="text" placeholder="Search docs..." />
|
|
</li>
|
|
</ul>
|
|
<ul class="nav-site nav-site-external">
|
|
<li><a href="https://github.com/facebook/react">GitHub</a></li>
|
|
<li><a href="https://github.com/facebook/react/releases">v16.0.0</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<section class="content wrap documentationContent">
|
|
<div class="inner-content">
|
|
<a class="edit-page-link" href="https://github.com/facebook/react/tree/master/docs/docs/reference-dom-elements.md" target="_blank">Edit on GitHub</a>
|
|
<h1>
|
|
DOM Elements
|
|
</h1>
|
|
<div class="subHeader"></div>
|
|
|
|
<p>React implements a browser-independent DOM system for performance and cross-browser compatibility. We took the opportunity to clean up a few rough edges in browser DOM implementations.</p>
|
|
|
|
<p>In React, all DOM properties and attributes (including event handlers) should be camelCased. For example, the HTML attribute <code>tabindex</code> corresponds to the attribute <code>tabIndex</code> in React. The exception is <code>aria-*</code> and <code>data-*</code> attributes, which should be lowercased. For example, you can keep <code>aria-label</code> as <code>aria-label</code>.</p>
|
|
|
|
<h2>Differences In Attributes</h2>
|
|
|
|
<p>There are a number of attributes that work differently between React and HTML:</p>
|
|
|
|
<h3>checked</h3>
|
|
|
|
<p>The <code>checked</code> attribute is supported by <code><input></code> components of type <code>checkbox</code> or <code>radio</code>. You can use it to set whether the component is checked. This is useful for building controlled components. <code>defaultChecked</code> is the uncontrolled equivalent, which sets whether the component is checked when it is first mounted.</p>
|
|
|
|
<h3>className</h3>
|
|
|
|
<p>To specify a CSS class, use the <code>className</code> attribute. This applies to all regular DOM and SVG elements like <code><div></code>, <code><a></code>, and others.</p>
|
|
|
|
<p>If you use React with Web Components (which is uncommon), use the <code>class</code> attribute instead.</p>
|
|
|
|
<h3>dangerouslySetInnerHTML</h3>
|
|
|
|
<p><code>dangerouslySetInnerHTML</code> is React's replacement for using <code>innerHTML</code> in the browser DOM. In general, setting HTML from code is risky because it's easy to inadvertently expose your users to a <a href="https://en.wikipedia.org/wiki/Cross-site_scripting">cross-site scripting (XSS)</a> attack. So, you can set HTML directly from React, but you have to type out <code>dangerouslySetInnerHTML</code> and pass an object with a <code>__html</code> key, to remind yourself that it's dangerous. For example:</p>
|
|
<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="kd">function</span> <span class="nx">createMarkup</span><span class="p">()</span> <span class="p">{</span>
|
|
<span class="k">return</span> <span class="p">{</span><span class="nx">__html</span><span class="o">:</span> <span class="s1">'First &middot; Second'</span><span class="p">};</span>
|
|
<span class="p">}</span>
|
|
|
|
<span class="kd">function</span> <span class="nx">MyComponent</span><span class="p">()</span> <span class="p">{</span>
|
|
<span class="k">return</span> <span class="o"><</span><span class="nx">div</span> <span class="nx">dangerouslySetInnerHTML</span><span class="o">=</span><span class="p">{</span><span class="nx">createMarkup</span><span class="p">()}</span> <span class="o">/></span><span class="p">;</span>
|
|
<span class="p">}</span>
|
|
</code></pre></div>
|
|
<h3>htmlFor</h3>
|
|
|
|
<p>Since <code>for</code> is a reserved word in JavaScript, React elements use <code>htmlFor</code> instead.</p>
|
|
|
|
<h3>onChange</h3>
|
|
|
|
<p>The <code>onChange</code> event behaves as you would expect it to: whenever a form field is changed, this event is fired. We intentionally do not use the existing browser behavior because <code>onChange</code> is a misnomer for its behavior and React relies on this event to handle user input in real time.</p>
|
|
|
|
<h3>selected</h3>
|
|
|
|
<p>The <code>selected</code> attribute is supported by <code><option></code> components. You can use it to set whether the component is selected. This is useful for building controlled components.</p>
|
|
|
|
<h3>style</h3>
|
|
|
|
<p>The <code>style</code> attribute accepts a JavaScript object with camelCased properties rather than a CSS string. This is consistent with the DOM <code>style</code> JavaScript property, is more efficient, and prevents XSS security holes. For example:</p>
|
|
<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="kr">const</span> <span class="nx">divStyle</span> <span class="o">=</span> <span class="p">{</span>
|
|
<span class="nx">color</span><span class="o">:</span> <span class="s1">'blue'</span><span class="p">,</span>
|
|
<span class="nx">backgroundImage</span><span class="o">:</span> <span class="s1">'url('</span> <span class="o">+</span> <span class="nx">imgUrl</span> <span class="o">+</span> <span class="s1">')'</span><span class="p">,</span>
|
|
<span class="p">};</span>
|
|
|
|
<span class="kd">function</span> <span class="nx">HelloWorldComponent</span><span class="p">()</span> <span class="p">{</span>
|
|
<span class="k">return</span> <span class="o"><</span><span class="nx">div</span> <span class="nx">style</span><span class="o">=</span><span class="p">{</span><span class="nx">divStyle</span><span class="p">}</span><span class="o">></span><span class="nx">Hello</span> <span class="nx">World</span><span class="o">!<</span><span class="err">/div>;</span>
|
|
<span class="p">}</span>
|
|
</code></pre></div>
|
|
<p>Note that styles are not autoprefixed. To support older browsers, you need to supply corresponding style properties:</p>
|
|
<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="kr">const</span> <span class="nx">divStyle</span> <span class="o">=</span> <span class="p">{</span>
|
|
<span class="nx">WebkitTransition</span><span class="o">:</span> <span class="s1">'all'</span><span class="p">,</span> <span class="c1">// note the capital 'W' here</span>
|
|
<span class="nx">msTransition</span><span class="o">:</span> <span class="s1">'all'</span> <span class="c1">// 'ms' is the only lowercase vendor prefix</span>
|
|
<span class="p">};</span>
|
|
|
|
<span class="kd">function</span> <span class="nx">ComponentWithTransition</span><span class="p">()</span> <span class="p">{</span>
|
|
<span class="k">return</span> <span class="o"><</span><span class="nx">div</span> <span class="nx">style</span><span class="o">=</span><span class="p">{</span><span class="nx">divStyle</span><span class="p">}</span><span class="o">></span><span class="nx">This</span> <span class="nx">should</span> <span class="nx">work</span> <span class="nx">cross</span><span class="o">-</span><span class="nx">browser</span><span class="o"><</span><span class="err">/div>;</span>
|
|
<span class="p">}</span>
|
|
</code></pre></div>
|
|
<p>Style keys are camelCased in order to be consistent with accessing the properties on DOM nodes from JS (e.g. <code>node.style.backgroundImage</code>). Vendor prefixes <a href="http://www.andismith.com/blog/2012/02/modernizr-prefixed/">other than <code>ms</code></a> should begin with a capital letter. This is why <code>WebkitTransition</code> has an uppercase "W".</p>
|
|
|
|
<h3>suppressContentEditableWarning</h3>
|
|
|
|
<p>Normally, there is a warning when an element with children is also marked as <code>contentEditable</code>, because it won't work. This attribute suppresses that warning. Don't use this unless you are building a library like <a href="https://facebook.github.io/draft-js/">Draft.js</a> that manages <code>contentEditable</code> manually.</p>
|
|
|
|
<h3>value</h3>
|
|
|
|
<p>The <code>value</code> attribute is supported by <code><input></code> and <code><textarea></code> components. You can use it to set the value of the component. This is useful for building controlled components. <code>defaultValue</code> is the uncontrolled equivalent, which sets the value of the component when it is first mounted.</p>
|
|
|
|
<h2>All Supported HTML Attributes</h2>
|
|
|
|
<p>As of React 16, any standard <a href="/react/blog/2017/09/08/dom-attributes-in-react-16.html">or custom</a> DOM attributes are fully supported.</p>
|
|
|
|
<p>React has always provided a JavaScript-centric API to the DOM. Since React components often take both custom and DOM-related props, React uses the <code>camelCase</code> convention just like the DOM APIs:</p>
|
|
<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="o"><</span><span class="nx">div</span> <span class="nx">tabIndex</span><span class="o">=</span><span class="s2">"-1"</span> <span class="o">/></span> <span class="c1">// Just like node.tabIndex DOM API</span>
|
|
<span class="o"><</span><span class="nx">div</span> <span class="nx">className</span><span class="o">=</span><span class="s2">"Button"</span> <span class="o">/></span> <span class="c1">// Just like node.className DOM API</span>
|
|
<span class="o"><</span><span class="nx">input</span> <span class="nx">readOnly</span><span class="o">=</span><span class="p">{</span><span class="kc">true</span><span class="p">}</span> <span class="o">/></span> <span class="c1">// Just like node.readOnly DOM API</span>
|
|
</code></pre></div>
|
|
<p>These props work similarly to the corresponding HTML attributes, with the exception of the special cases documented above.</p>
|
|
|
|
<p>Some of the DOM attributes supported by React include:</p>
|
|
<div class="highlight"><pre><code class="language-text" data-lang="text">accept acceptCharset accessKey action allowFullScreen allowTransparency alt
|
|
async autoComplete autoFocus autoPlay capture cellPadding cellSpacing challenge
|
|
charSet checked cite classID className colSpan cols content contentEditable
|
|
contextMenu controls controlsList coords crossOrigin data dateTime default defer
|
|
dir disabled download draggable encType form formAction formEncType formMethod
|
|
formNoValidate formTarget frameBorder headers height hidden high href hrefLang
|
|
htmlFor httpEquiv icon id inputMode integrity is keyParams keyType kind label
|
|
lang list loop low manifest marginHeight marginWidth max maxLength media
|
|
mediaGroup method min minLength multiple muted name noValidate nonce open
|
|
optimum pattern placeholder poster preload profile radioGroup readOnly rel
|
|
required reversed role rowSpan rows sandbox scope scoped scrolling seamless
|
|
selected shape size sizes span spellCheck src srcDoc srcLang srcSet start step
|
|
style summary tabIndex target title type useMap value width wmode wrap
|
|
</code></pre></div>
|
|
<p>Similarly, all SVG attributes are fully supported:</p>
|
|
<div class="highlight"><pre><code class="language-text" data-lang="text">accentHeight accumulate additive alignmentBaseline allowReorder alphabetic
|
|
amplitude arabicForm ascent attributeName attributeType autoReverse azimuth
|
|
baseFrequency baseProfile baselineShift bbox begin bias by calcMode capHeight
|
|
clip clipPath clipPathUnits clipRule colorInterpolation
|
|
colorInterpolationFilters colorProfile colorRendering contentScriptType
|
|
contentStyleType cursor cx cy d decelerate descent diffuseConstant direction
|
|
display divisor dominantBaseline dur dx dy edgeMode elevation enableBackground
|
|
end exponent externalResourcesRequired fill fillOpacity fillRule filter
|
|
filterRes filterUnits floodColor floodOpacity focusable fontFamily fontSize
|
|
fontSizeAdjust fontStretch fontStyle fontVariant fontWeight format from fx fy
|
|
g1 g2 glyphName glyphOrientationHorizontal glyphOrientationVertical glyphRef
|
|
gradientTransform gradientUnits hanging horizAdvX horizOriginX ideographic
|
|
imageRendering in in2 intercept k k1 k2 k3 k4 kernelMatrix kernelUnitLength
|
|
kerning keyPoints keySplines keyTimes lengthAdjust letterSpacing lightingColor
|
|
limitingConeAngle local markerEnd markerHeight markerMid markerStart
|
|
markerUnits markerWidth mask maskContentUnits maskUnits mathematical mode
|
|
numOctaves offset opacity operator order orient orientation origin overflow
|
|
overlinePosition overlineThickness paintOrder panose1 pathLength
|
|
patternContentUnits patternTransform patternUnits pointerEvents points
|
|
pointsAtX pointsAtY pointsAtZ preserveAlpha preserveAspectRatio primitiveUnits
|
|
r radius refX refY renderingIntent repeatCount repeatDur requiredExtensions
|
|
requiredFeatures restart result rotate rx ry scale seed shapeRendering slope
|
|
spacing specularConstant specularExponent speed spreadMethod startOffset
|
|
stdDeviation stemh stemv stitchTiles stopColor stopOpacity
|
|
strikethroughPosition strikethroughThickness string stroke strokeDasharray
|
|
strokeDashoffset strokeLinecap strokeLinejoin strokeMiterlimit strokeOpacity
|
|
strokeWidth surfaceScale systemLanguage tableValues targetX targetY textAnchor
|
|
textDecoration textLength textRendering to transform u1 u2 underlinePosition
|
|
underlineThickness unicode unicodeBidi unicodeRange unitsPerEm vAlphabetic
|
|
vHanging vIdeographic vMathematical values vectorEffect version vertAdvY
|
|
vertOriginX vertOriginY viewBox viewTarget visibility widths wordSpacing
|
|
writingMode x x1 x2 xChannelSelector xHeight xlinkActuate xlinkArcrole
|
|
xlinkHref xlinkRole xlinkShow xlinkTitle xlinkType xmlns xmlnsXlink xmlBase
|
|
xmlLang xmlSpace y y1 y2 yChannelSelector z zoomAndPan
|
|
</code></pre></div>
|
|
<p>You may also use custom attributes as long as they're fully lowercase.</p>
|
|
|
|
|
|
<div class="docs-prevnext">
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="nav-docs">
|
|
<!-- Docs Nav -->
|
|
|
|
<div class="nav-docs-section">
|
|
<h3>Quick Start</h3>
|
|
<ul>
|
|
|
|
<li>
|
|
<a href="/react/docs/installation.html">Installation</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/hello-world.html">Hello World</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/introducing-jsx.html">Introducing JSX</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/rendering-elements.html">Rendering Elements</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/components-and-props.html">Components and Props</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/state-and-lifecycle.html">State and Lifecycle</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/handling-events.html">Handling Events</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/conditional-rendering.html">Conditional Rendering</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/lists-and-keys.html">Lists and Keys</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/forms.html">Forms</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/lifting-state-up.html">Lifting State Up</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/composition-vs-inheritance.html">Composition vs Inheritance</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/thinking-in-react.html">Thinking In React</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="nav-docs-section">
|
|
<h3>Advanced Guides</h3>
|
|
<ul>
|
|
|
|
<li>
|
|
<a href="/react/docs/jsx-in-depth.html">JSX In Depth</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/typechecking-with-proptypes.html">Typechecking With PropTypes</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/refs-and-the-dom.html">Refs and the DOM</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/uncontrolled-components.html">Uncontrolled Components</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/optimizing-performance.html">Optimizing Performance</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/react-without-es6.html">React Without ES6</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/react-without-jsx.html">React Without JSX</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/reconciliation.html">Reconciliation</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/context.html">Context</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/portals.html">Portals</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/web-components.html">Web Components</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/higher-order-components.html">Higher-Order Components</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/integrating-with-other-libraries.html">Integrating with Other Libraries</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/accessibility.html">Accessibility</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="nav-docs-section">
|
|
<h3>Reference</h3>
|
|
<ul>
|
|
|
|
<li>
|
|
<a href="/react/docs/react-api.html">React</a>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
<a href="/react/docs/react-component.html">React.Component</a>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/react-dom.html">ReactDOM</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/react-dom-server.html">ReactDOMServer</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/dom-elements.html" class="active">DOM Elements</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/events.html">SyntheticEvent</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/test-utils.html">Test Utilities</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/shallow-renderer.html">Shallow Renderer</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/test-renderer.html">Test Renderer</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/docs/javascript-environment-requirements.html">JS Environment Requirements</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
<!-- Contributing Nav -->
|
|
|
|
<div class="nav-docs-section">
|
|
<h3>Contributing</h3>
|
|
<ul>
|
|
|
|
<li>
|
|
<a href="/react/contributing/how-to-contribute.html">How to Contribute</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/contributing/codebase-overview.html">Codebase Overview</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/contributing/implementation-notes.html">Implementation Notes</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/react/contributing/design-principles.html">Design Principles</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
<footer class="nav-footer">
|
|
<section class="sitemap">
|
|
<a href="/react/" class="nav-home">
|
|
</a>
|
|
<div>
|
|
<h5><a href="/react/docs/">Docs</a></h5>
|
|
<a href="/react/docs/hello-world.html">Quick Start</a>
|
|
<a href="/react/docs/thinking-in-react.html">Thinking in React</a>
|
|
<a href="/react/tutorial/tutorial.html">Tutorial</a>
|
|
<a href="/react/docs/jsx-in-depth.html">Advanced Guides</a>
|
|
</div>
|
|
<div>
|
|
<h5><a href="/react/community/support.html">Community</a></h5>
|
|
<a href="http://stackoverflow.com/questions/tagged/reactjs" target="_blank">Stack Overflow</a>
|
|
<a href="https://discuss.reactjs.org/" target="_blank">Discussion Forum</a>
|
|
<a href="https://discord.gg/0ZcbPKXt5bZjGY5n" target="_blank">Reactiflux Chat</a>
|
|
<a href="https://www.facebook.com/react" target="_blank">Facebook</a>
|
|
<a href="https://twitter.com/reactjs" target="_blank">Twitter</a>
|
|
</div>
|
|
<div>
|
|
<h5><a href="/react/community/support.html">Resources</a></h5>
|
|
<a href="/react/community/conferences.html">Conferences</a>
|
|
<a href="/react/community/videos.html">Videos</a>
|
|
<a href="https://github.com/facebook/react/wiki/Examples" target="_blank">Examples</a>
|
|
<a href="https://github.com/facebook/react/wiki/Complementary-Tools" target="_blank">Complementary Tools</a>
|
|
</div>
|
|
<div>
|
|
<h5>More</h5>
|
|
<a href="/react/blog/">Blog</a>
|
|
<a href="https://github.com/facebook/react" target="_blank">GitHub</a>
|
|
<a href="http://facebook.github.io/react-native/" target="_blank">React Native</a>
|
|
<a href="/react/acknowledgements.html">Acknowledgements</a>
|
|
</div>
|
|
</section>
|
|
<a href="https://code.facebook.com/projects/" target="_blank" class="fbOpenSource">
|
|
<img src="/react/img/oss_logo.png" alt="Facebook Open Source" width="170" height="45"/>
|
|
</a>
|
|
<section class="copyright">
|
|
Copyright © 2017 Facebook Inc.
|
|
</section>
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
<div id="fb-root"></div>
|
|
<script src="/react/js/anchor-links.js"></script>
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
ga('create', 'UA-41298772-1', 'facebook.github.io');
|
|
ga('send', 'pageview');
|
|
|
|
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
|
|
|
|
(function(d, s, id) {
|
|
var js, fjs = d.getElementsByTagName(s)[0];
|
|
if (d.getElementById(id)) return;
|
|
js = d.createElement(s); js.id = id;
|
|
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.6&appId=623268441017527";
|
|
fjs.parentNode.insertBefore(js, fjs);
|
|
}(document, 'script', 'facebook-jssdk'));
|
|
|
|
docsearch({
|
|
apiKey: '36221914cce388c46d0420343e0bb32e',
|
|
indexName: 'react',
|
|
inputSelector: '#algolia-doc-search'
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|