0

我想在我的主干stickit绑定中定义一个锚标签href,这样每当模型属性更新时,我的锚标签的href就会更新

像这样的东西,

bindings : {
    ".facebook-profile-icon('href')" : "facebook"
    ".twitter-profile-icon('href')" : "twitter"
}

目前,我正在做这样的事情:

bindings : {
    ".facebook-profile-icon" : "facebook"
    ".twitter-profile-icon" : "twitter"
}

render : function(){
  this.stickit();
}

这只是(可以理解)更新类的 html 而不是更新 href。

有没有办法我可以在骨干stickit中做到这一点?

4

1 回答 1

1

Backbone.StickIt 有据可查。在您的情况下,您想更新属性,因此您可以使用: https ://nytimes.github.io/backbone.stickit/#attributes

于 2015-11-27T00:13:49.470 回答