首頁  >  文章  >  web前端  >  如何使得文本框在点击的时候,边框的颜色变成绿色_html/css_WEB-ITnose

如何使得文本框在点击的时候,边框的颜色变成绿色_html/css_WEB-ITnose

WBOY
WBOY原創
2016-06-24 12:02:312135瀏覽



回复讨论(解决方案)

<script src=/scripts/jquery-1.8.3.min.js></script><script>$(function() {  $(":text").focus(function() {    $(this).css('border-color', '#0f0');  }).blur(function() {    $(this).css('border-color', '');  })});</script><input type=text><input type=text><input type=text><input type=text>

还有其他写法么?!

用个css伪类就好了
input:focus {
border-style: solid;
border-color: #339933;
}

input:focus{	border-style:solid;	border-color:#339933}

input:focus{	border-style:solid;	border-color:#339933}


如何用div类实现嘞?!


input:focus{	border-style:solid;	border-color:#339933}


如何用div类实现嘞?!
用jQuery:
<style type="text/css">	.green{		border-style:solid;		border-color:#339933	}</style>$("#你的input的ID").focus(	function(){		$("#你的div的ID").addClass("green");			}).blur(	function(){		$("#你的div的ID").removeClass("green");		});
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn