www.gusucode.com > 48:【198-3353】响应式监控类电子科技设备网站织梦模板(自适应各类移动设备) > 48:【198-3353】响应式监控类电子科技设备网站织梦模板(自适应各类移动设备)/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");
		});
		
 })