给<input type="color">设置默认值

参考:https://stackoverflow.com/questions/14943074/html5-input-colors-default-color?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa

<input  type="color">  默认值为“#000000”,

想要更改默认值为白色,改为

<input  type="color" value="#fff">

并未有效果,

<input  type="color" value="#ffffff">

有效,如果要更改默认值必须要用6位数字。

猜你喜欢

转载自www.cnblogs.com/jeacy/p/9092069.html