我在创建firefox扩展的教程中有以下代码。
它使用了一种创建对象的方法并将其分配给我以前没有遇到的方法,而且有些代码让我感到困惑,因为我理解JS是如何运作得相当好的。
var linkTargetFinder = function () {
var prefManager = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
return {
init : function () {
gBrowser.addEventListener("load", function () {
var autoRun = prefManager.getBoolPref("extensions.linktargetfinder.autorun");
if (autoRun) {
linkTargetFinder.run();
}
}, false);
},
run : function () {
var head = content.document.getElementsByTagName("head")[0],
style = content.document.getElementById("link-target-finder-style"),
allLinks = content.document.getElementsByTagName("a"),
foundLinks = 0;
if (!style) {
style = content.document.createElement("link");
style.id = "link-target-finder-style";
style.type = "text/css";
style.rel = "stylesheet";
style.href = "chrome://linktargetfinder/skin/skin.css";
head.appendChild(style);
}
for (var i=0, il=allLinks.length; i<il; i++) {
elm = allLinks[i];
if (elm.getAttribute("target")) {
elm.className += ((elm.className.length > 0)? " " : "") + "link-target-finder-selected";
foundLinks++;
}
}
if (foundLinks === 0) {
alert("No links found with a target attribute");
}
else {
alert("Found " + foundLinks + " links with a target attribute");
}
}
};
}();
window.addEventListener("load", linkTargetFinder.init, false);
我的问题是,你在自执行函数中创建了变量prefManager。然后返回要分配给变量linkTargetFinder的对象。 在返回对象之前将变量放入方法定义中时,变量是否转换为其值。或者它是否继续引用在自执行函数中创建的变量,我认为该变量在函数返回后会被破坏或至少超出范围?
非常感谢您提前寻求任何帮助,我已经尝试了几个实验,看看我是否能够以某种方式证明这一点,并且也很好看,尽管我有点不确定要搜索什么。