www.gusucode.com > 【T6965】响应式互联网网络建设设计类织梦模板(自适应手机端) > 【T6965】响应式互联网网络建设设计类织梦模板(自适应手机端)/member/templets/js/base.js

    $(function(){
		//文本框Style
		$(".text").mouseover(function(){
			$(this).addClass("text_o");
		}).mouseout(function(){
			$(this).removeClass("text_o");
		}).focus(function(){
			$(this).addClass("text_s");
		}).blur(function(){
			$(this).removeClass("text_s");
		});
		$(".intxt").mouseover(function(){
			$(this).addClass("text_o");
		}).mouseout(function(){
			$(this).removeClass("text_o");
		}).focus(function(){
			$(this).addClass("text_s");
		}).blur(function(){
			$(this).removeClass("text_s");
		});
		
 })