我很新的命名空間和全局變量。我目前有這樣的代碼:命名空間全局變量問題
$('#formats1').hover(function() {
var tag = 'div.cds';
var offset = $(this).position();
var width = $(tag).outerWidth();
var height = $(tag).outerHeight();
$(tag).show();
$(tag).css('left', offset.left - width + 'px');
$(tag).css('top', offset.top - height + 'px');
}, function() {
$("div.cds").hide();
});
$('#formats2').hover(function() {
var tag = 'div.lp';
var offset = $(this).position();
var width = $(tag).outerWidth();
var height = $(tag).outerHeight();
$(tag).show();
$(tag).css('left', offset.left - width + 'px');
$(tag).css('top', offset.top - height + 'px');
}, function() {
$("div.lp").hide();
});
這是重複多次爲此刻的各種申報單。
我覺得這將是合併命名空間&全局變量的好機會,但我不確定如何做到這一點。有任何想法嗎?
謝謝!
完美!謝謝!謝謝@jAndy! – Yahreen 2011-05-23 21:05:26
@Yahreen沒有problemo^_ ^ – Neal 2011-05-23 21:06:04