JavaScript registration to display text box prompts

Source: Internet
Author: User
Tip: you can modify some code before running

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head> <title>JavaScript to implement text box prompts</title> <style type="text/css">* {Margin: 0px; padding: 0px; font-size: 12px;} input {width: 100px; height: 20px; border: 1px solid # ccc ;}</style></head><body><script language="javascript">Function tips (id, str) {var l = document. getElementById (id ). offsetLeft + 120; var t = document. getElementById (id ). offsetTop; document. getElementById ("tips "). innerHTML = "prompt:" + str; document. getElementById ("tips "). style. left = l + "px"; document. getElementById ("tips "). style. top = t + "px"; document. getElementById ("tips "). style. display = "";} function outtips () {document. getElementById ("tips "). style. display = 'none ';}</script><div id="tips" ></div><br />Name:<input type="text" id="username" onfocus="tips('username','姓名长度最多16个字符')" onblur="outtips()" /><br />Password:<input type="password" id="password" onfocus="tips('password','密码长度必须在3-18位之间')" onblur="outtips()" /></body></html></td> </tr></table>
Tip: you can modify some code before running

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.