如何检索jQuery.mynamespace?

时间:2010-09-29 14:34:50

标签: javascript jquery namespaces

我有以下代码,我将值存储在imgwidth变量

var newImg = new Image();
        newImg.src = document.getElementById('image').src;
        var height = newImg.height;
        var width = newImg.width;
            var width_img = width/3;
            jQuery.mynamespace = {imgwidth : width_img};

如何全局检索imgwidth变量?

2 个答案:

答案 0 :(得分:1)

您可以说jQuery.mynamespace.imgwidth,因为jQuery在全球范围内可用。

答案 1 :(得分:0)

这样的事情?:

function testa() {
   jQuery.test = {data: 1, data2: 2};
}

testa()

alert(jQuery.test.data  + "\n" + jQuery.test.data2);
​

example