ホームページ  >  記事  >  ウェブフロントエンド  >  クリック時にテキストボックスの枠線の色を緑色にする方法_html/css_WEB-ITnose

クリック時にテキストボックスの枠線の色を緑色にする方法_html/css_WEB-ITnose

WBOY
WBOYオリジナル
2016-06-24 12:02:312134ブラウズ



ディスカッションへの返信(解決策)

<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}


それを実現するにはどうすればよいですか? !


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 までご連絡ください。