www.gusucode.com > 简洁自适应响应式电子产品类企业网站织梦模板(自适应手机版)(demo113) > 简洁自适应响应式电子产品类企业网站织梦模板(自适应手机版)(demo113)/www7/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");
		});
		
 })