third, JSX Grammar

Source: Internet
Author: User

The previous section of the code, the HTML language is written directly in the JavaScript language, without any quotation marks, this is the syntax of JSX, which allows the HTML and JavaScript to be mixed (view Demo02 ).

var names=[' Alice ',' Emily ',' Kate ']; Reactdom.Render(<div>{names.Map(function(name){return <div>hello< Span class= "token punctuation", {name}! </div> }} </div>. ( ' example '     

The above code embodies the basic syntax rules for JSX: encountering HTML tags (in<), parsing with HTML rules, encountering code blocks (in{beginning), it is parsed with JavaScript Rules. The result of the above code is as Follows.

JSX allows JavaScript variables to be inserted directly into the Template. If the variable is an array, all the members of the array are expanded (viewdemo03)。

var arr = [
];

Reactdom.render (
<div>{arr}</div>,
document.getElementById (' Example ')
);

third, JSX Grammar

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.