3

我怎么能用javascript做到这一点?

我的文本框有一个默认值,它是斜体,但是当它被点击时,文本框将被清除并且字体样式应该是正常的。

4

3 回答 3

4

尝试这样的事情:

<input type="text" value="Enter user ID here" 
  style="font-style:italic;" 
  onfocus="this.value='';this.style.fontStyle='normal';" 
  onblur="clickrecall(this,'Enter user ID here');this.style.fontStyle='italic';">

编辑:当我们在用户输入文本框时清除格式时,我们应该在他出去时将 fontStyle 设置为斜体。

于 2009-09-05T17:53:17.773 回答
2
document.getElementById(inputId).style.fontStyle="normal";
于 2012-01-30T15:21:07.097 回答
1

在javascript方法中设置样式:

document.getElementById('test').style="font-style:normal;"

于 2009-09-05T17:53:15.527 回答