最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript outer scope variable access - Stack Overflow

programmeradmin0浏览0评论
OperationSelector = function(selectElement) {
    this.selectElement = selectElement;
}

OperationSelector.prototype.populateSelectWithData = function(xmlData) {
    $(xmlData).find('operation').each(function() {
        var operation = $(this);
        selectElement.append('<option>' + operation.attr("title") + '</option>');               
    });
}

How could I access OperationSelector.selectElement in iteration block ?

OperationSelector = function(selectElement) {
    this.selectElement = selectElement;
}

OperationSelector.prototype.populateSelectWithData = function(xmlData) {
    $(xmlData).find('operation').each(function() {
        var operation = $(this);
        selectElement.append('<option>' + operation.attr("title") + '</option>');               
    });
}

How could I access OperationSelector.selectElement in iteration block ?

Share Improve this question asked Feb 16, 2010 at 15:56 dmitrynikolaevdmitrynikolaev 9,1525 gold badges31 silver badges45 bronze badges 1
  • 3 Incidentally you shouldn't generally use HTML string-slinging to create new options. If the title may contain a < or & you've got trouble (potentially security trouble). Using new Option(operation.attr('title')) to create the node is simpler and safer. – bobince Commented Feb 16, 2010 at 16:21
Add a ment  | 

1 Answer 1

Reset to default 13

Assign it to a local variable in the function scope before your iteration function. Then you can reference it within:

OperationSelector = function(selectElement) { 
    this.selectElement = selectElement; 
} 

OperationSelector.prototype.populateSelectWithData = function(xmlData) { 
    var os = this;
    $(xmlData).find('operation').each(function() { 
        var operation = $(this); 
        os.selectElement.append(new Option(operation.attr("title")));
    }); 
}
发布评论

评论列表(0)

  1. 暂无评论