下面是一个下拉搜索表单,我希望更改显示的this.value句子中一个单词的颜色。
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
<input type="text" onfocus="if(this.value=='We'll steer you in the right direction') this.value='';" onblur="if(this.value=='') this.value='We'll steer you in the right direction';" value="We'll steer you in the right direction" name="s" id="s" /><br />
我希望以不同的颜色显示“steer”这个词。
提前致谢。