Javascript outer scope variable access - Stack Overflow

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

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")));
    }); 
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743662126a4486372.html

相关推荐

  • Javascript outer scope variable access - Stack Overflow

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

    1天前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信