17 lines
343 B
JavaScript
17 lines
343 B
JavaScript
|
function is_hexcolor(str)
|
||
|
{
|
||
|
regexp = /^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$/;
|
||
|
|
||
|
if (regexp.test(str))
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
console.log(is_hexcolor("#444"));
|
||
|
|
||
|
console.log(is_hexcolor("#3333"));
|