Below CodeIt is the corresponding operation performed by jquery during the mouse action. For example, the jquery focus is obtained in the input box, And the jquery effect is displayed when the mouse clicks and the mouse clicks.
<Script
Type = "text/JavaScript"
Src = "/include/jquery/jquery-1.1.3.1.pack.js"> </SCRIPT>
<Input
Type = "text" value = "ID" id = "uid" name = "uid"/>
<Input type = "password"
Name = "upwd" value = "password" id = "upwd"/>
<Script
Language = "JavaScript">
// Obtain the focus, which has the best effect. You can select all the points or press tab.
$ ("# Upwd"). Focus (function () {This. Select ();})
$ ("# Uid"). Focus (function () {This. Select ();})
// Click
$ ("# Upwd"). Click (function () {This. Select ();})
$ ("# Uid"). Click (function () {This. Select ();})
// Select all entries
$ ("# Upwd"). Mouseover (function () {This. Select ();})
$ ("# Uid"). Mouseover (function () {This. Select ();})
</SCRIPT>
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.