1)我会在某些条件下使用javascript更改输入占位符颜色(如果它会永远更改占位符颜色,则不是CSS)2)我希望占位符在输入框上更改为另一个占位符。我得到了这个功能:
if(email.value==''){
email.style.borderColor = "#FF0000";
email.setAttribute('placeholder',"Plea… fill this required field");
//code for changing the placeholder color
//code for changing the placeholder onmouseover
}
1)占位符颜色对我来说通常是“#C9C9C9”我想通过这个代码把它改成另一种颜色。2)我希望占位符文本在鼠标悬停时更改为任何其他文本。我会感谢给我代码的人。
谢谢