2012-11-13 62 views
0

下面是一個下拉式搜索表單,我正在查看顯示的this.value句子中的一個單詞的顏色。以php形式更改一個輸入詞的顏色

<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 /> 

進出口尋找到具有不同的顏色顯示的單詞「轉向」。

在此先感謝。

+4

你不能,這是不可能與香草選擇框。 – meagar

回答

2

您將需要創建自己的控件來做到這一點。 「富文本」框允許您控制文本框內的格式,請參閱this question