71

我看不到这里有什么问题,但使用以下 Knockout 模板无法显示图像:

<script type="text/html" id="legend-template">       
    <div><input type="checkbox" data-bind="click : doSomething" ></input>
        <img width="16px" height="16px" data-bind="src: 'imagePath'" />          
        <span data-bind="text : label"> </span>
    </div>        
</script>

this 绑定的对象如下所示:

tut.myObject= function (imagePath, label) {
    this.label = ko.observable(label);
    this.imagePath = ko.observable(imagePath || liveString + '/Content/images/marker.png');   
};

tut.myObject.prototype = {
    doSomething: function () { alert("do what?");
     }
};

当呈现 HTML 对象时,我看到标签并单击复选框调用 doSomething。

TIA。

4

1 回答 1

180

只有少数属性可以直接绑定;尝试使用attr- 它可以让您在元素上设置任何属性。

<img width="16px" height="16px" data-bind="attr:{src: imagePath}" />  
于 2012-05-18T21:01:27.543 回答