Color Picker on Web pages implemented by JS, js
Use Js Code to compile a color picker for a webpage, that is, to select a color. Click any color block with the mouse to bring up the color value, when you want to use a certain color without knowing the color value, you can use this small effect to tell you what the color value is, which is more convenient.
<Html> <pead> <title> color picker </title> <meta http-equiv = "Content-Type" content = "text/html; charset = gb2312 "> <style type =" text/css "> <! --. Style1 {color: # FFFFFF} --> </style> </pead> <body style = "font: menu "> <table border =" 0 "cellspacing =" 1 "cellpadding =" 3 "width =" 350 "align =" center "bgcolor =" # dddddddd "> <tr bgcolor = "# FFFFFF"> <td width = "10%" align = "center"> <select name = "select1" onchange = "selectmenu (this. value) "> <option value =" 1 "selected> Red </option> <option value =" 2 "> green </option> <option value =" 3 "> blue </ option> <option value = "4"> gray </option> </select> </td> <td width = "90%" align = "center"> <table width = "100%" border = "0" cellspacing = "0" cellpadding = "0"> <tr> <td align = "center" style = "font-size: 12px "> click the color block below, the color value </td> </tr> </table> </td> </tr> <tr bgcolor = "# FFFFFF"> <td width = "10%" is displayed" align = "center"> <table id = "table1" border = "0" cellspacing = "1" cellpadding = "0"> </table> </td> <td width = "90%" align = "center"> <table id = "table2" border = "0" cellspacing = "1" cellpadding = "0"> </table> </td> </tr> </table> </body> </ptml>
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]