이것 괜찮아요?

1364 단어 압축
function ooaoao($dom, target, e) {

	var left = $(target).offset().left,

		top = $(target).offset().top,

		domHeight = this.boxHeight + e.clientY,

		domWidth = this.boxWidth + e.clientX + $(target).parent().width(),

		screenH = $(window).height() - $('#global_header').height(),

		screenW = $(window).width();



	top = domHeight > screenH ? top - (domHeight - screenH) : top;

	left = domWidth > screenW ? left - (domWidth - screenW) : left + $(target).parent().width();



	$('#shareBox').css({

		'left': left,

		'top': top,

		'z-index': 100,

		position: 'absolute'

	});

}


  
function ooaoao(a, c, b) {

	var a = $(c).offset().left,

		d = $(c).offset().top,

		e = this.boxHeight + b.clientY,

		b = this.boxWidth + b.clientX + $(c).parent().width(),

		f = $(window).height() - $("#global_header").height(),

		g = $(window).width(),

		d = e > f ? d - (e - f) : d,

		a = b > g ? a - (b - g) : a + $(c).parent().width();

	$("#shareBox").css({

		left: a,

		top: d,

		"z-index": 100,

		position: "absolute"

	})

};


  
이 압축은 매우 믿을 만하다. 단지 누군가가 쓴 코드는 매우 믿을 수 없다.나는 정말 그를 좀 만나고 싶다
위의 매개 변수 중의 $dom는 함수에서 사용하지 않았습니다. 매개 변수 e는 함수체의 네 번째 줄 이후에 다시 사용하지 않았습니다. 그래서 다섯 번째 줄에서 덮어쓰기 시작했습니다.

좋은 웹페이지 즐겨찾기