Heim  >  Artikel  >  Web-Frontend  >  css实现的文本框focus获取焦点设置样式代码实例_html/css_WEB-ITnose

css实现的文本框focus获取焦点设置样式代码实例_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:26:571611Durchsuche

css实现的文本框focus获取焦点设置样式代码实例:
文本框获取焦点然后设置它的css样式通常可以使用javascript代码。
具体可以参阅javascript实现的文本框获取焦点设置其样式代码一章节。
其实使用纯css也能够实现此功能,代码实例如下:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">input:focus{  background:#ccc;  color:green;}</style><head></head><body><input type="text" value="蚂蚁部落欢迎您"/></body></html>

上面的代码实现了我们的要求,代码比较简单这里就不多介绍了。
:focus选择器可以参阅css的:focus选择器用法介绍一章节。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=18231

更多内容可以参阅:http://www.softwhy.com/divcss/

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn