以php格式更改一个输入词的颜色

时间:2012-11-13 16:20:56

标签: javascript html css

下面是一个下拉搜索表单,我希望更改显示的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”这个词。

提前致谢。

1 个答案:

答案 0 :(得分:2)

您需要创建自己的控件才能执行此操作。 “富文本”框允许您控制文本框内的格式,请参阅this question