<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// 注册相关内容
(function($){
	$(function(){
		 $('.input-ctrol').on('click focus',function(){
		        $(this).addClass('active');
		    }).on('blur',function(){
		        if( $(this).val() == '' ){
		            $(this).removeClass('active');
		        }
		    });

		    // 关闭按钮
		    $('.reg-close').on('click',function(){
		        $(this).parents('.register').fadeOut(200,function(){
		            $('.mark-bg').fadeOut(200);
		        });
		    });
		    
	})
})(jQuery)</pre></body></html>