JQuery binds events to dynamically created elements.

Source: Internet
Author: User

 

Before entering the topic, let's take a look at the features frequently used on the foreground page: When you click the input box on the page, the text is automatically selected.

It is easy to think of using the focus event of the input box, when the input box gets the focus, then call the select () method of jQuery.

Okay, the idea is simple, and the logic does not seem to be wrong. Let's take a look at whether the reality can be achieved.

1. Construct a form on the page and put several input boxes. The code looks like this.


<Form action = "/" method = "post">
<Table>
<Tr>
<Td> Name: </td>
<Td>
<Input type = "text" name = "name" value = ""/>
</Td>
</Tr>
<Tr>
<Td> Age: </td>
<Td>
<Input type = "number" name = "age" value = ""/>
</Td>
</Tr>
<Tr>
<Td> Tel.: </td>
<Td>
<Input type = "tel" name = "tel" value = ""/>
</Td>
</Tr>
<Tr>
<Td> Email: </td>
<Td>
<Input type = "email" name = "email" value = ""/>
</Td>
</Tr>
<Tr>
<Td> Birth: </td>
<Td>
<Input type = "datetime" name = "birthday" value = ""/>
</Td>
</Tr>
</Table>
</Form>

 

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.