A js random color script (used for tag pages or any pages)

Source: Internet
Author: User

I saw someone asking for this thing and sent it up. 237 bytes. Small, right?
Add the following code to <div id = "mainContent-bottomimg"> of tag. asp.
Don't ask any questions for such a simple question.
You can also add it to header. asp or footer. asp. However, all the span areas of your entire page will be in a random color.

Demo
Http://www.hljsh.com/tag.asp
The results are the same. However, my demo is implemented using asp. I am using JS. The effect is the same.
Copy codeThe Code is as follows:
<Script>
Var obj = document. getElementsByTagName ("span ");
For (I = 0; I <obj. length; I ++)
{
Var str = "0123456789 abcdef ";
Var t = "#";
For (j = 0; j <6; j ++)
{T = t + str. charAt (Math. random () * str. length );}
Obj [I]. style. color = t;
}
</Script>

■ ■ ■
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]

Related Article

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.