如何在单击时更改文本框中文本的字体样式?
我怎样才能使用javascript做到这一点?
我的文本框有一个默认值是斜体,但是当单击它时,文本框将被清除,字体样式应该是正常的。
how can i do this using javascript?
my textbox has a default value which is italic but when it is clicked the textbox will be cleared and the fontstyle should be normal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这样的事情:
编辑: 当我们在用户输入文本框时清除格式时,我们应该在他出去时将 fontStyle 设置为斜体。
try something like that :
EDIT : As we clear the format when user enters the textbox, we should set the fontStyle to italic back when he goes out.
在javascript方法中设置样式:
set the style in javascript method: