动态修改input占位内容颜色、字号、透明度等等属性
<style type="text/css">
{
`
#betsInput::-webkit-input-placeholder {
color: ’#333333;
opacity: 1;
}
#betsInput::-moz-placeholder {
color: ‘#333333;
opacity: 1;
}
#betsInput::-ms-input-placeholder {
color: ‘#333333;
opacity: 1;
}
`
}
</style>
网友评论