如果我想在單行欄位中自動反白 在input中是打以下的Code :
<input name="text1" type="text" style="color: #000000" onfocus="this.select()"
onmouseover="this.focus()" value="要反白文字" />
但如果我想在CSS列表中加入 自動反白的動作 而不在input中加入
<style type="text/css">
<!--
.input {
onfocus: this.select();
onmouseover: this.focus();
}
-->
</style>
而在input只加入:
<input name="text1" type="text" value="要反白文字" />
以上方法是無效的! 那麼我要 怎樣設定?
謝謝幫忙哩!