You can't really modify pseudo-selectors with JavaScript. You'll have to modify an existing a <style>
element.
If possible, make a class:
.your-class::-webkit-input-placeholder {
color: #b2cde0
}
And add it to the element:
$('input').addClass('your-class');
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…