我想在我的主干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中做到这一点?