admin管理员组文章数量:1339474
This is how i want to construct my html
<a href="#">John <i class="person"></i></a>
And with knockout.js this is what i have done.
<a data-bind="text:name"><i class="person"></i></a>
As you can guess whole elements(not just text) of anchor is removed becuse of text binding in this case whole tags inside of anchor is removed. My solution is at below.
<a data-bind="html: name() + '<i class="person"></i>'"></a>
string concat with html in data-bind is a solution but it has 2 big downside. 'name' propery is not safe so we can got html injection. Sedondly writing html inside of data-bind attributes is sucks.
Another solution is.
<a href="#"><span data-bind="text:name"></span><i class="person"></i></a>
I know we introducing new html markup for just solution. It is what i have found best.
What is the well known solution for this problem in knockout.js ?
Can we specify to just update text not whole elements inside of it to text binding via parameters ?
Or better solution ?
This is how i want to construct my html
<a href="#">John <i class="person"></i></a>
And with knockout.js this is what i have done.
<a data-bind="text:name"><i class="person"></i></a>
As you can guess whole elements(not just text) of anchor is removed becuse of text binding in this case whole tags inside of anchor is removed. My solution is at below.
<a data-bind="html: name() + '<i class="person"></i>'"></a>
string concat with html in data-bind is a solution but it has 2 big downside. 'name' propery is not safe so we can got html injection. Sedondly writing html inside of data-bind attributes is sucks.
Another solution is.
<a href="#"><span data-bind="text:name"></span><i class="person"></i></a>
I know we introducing new html markup for just solution. It is what i have found best.
What is the well known solution for this problem in knockout.js ?
Can we specify to just update text not whole elements inside of it to text binding via parameters ?
Or better solution ?
Share Improve this question asked Aug 24, 2012 at 12:53 FreshbloodFreshblood 6,44110 gold badges61 silver badges98 bronze badges 02 Answers
Reset to default 10Using the span is the preferred solution. If the text binding doesn't replace all of the content, then it is hard for it to know what to update and not update the next time that it changes. If you want to always deal with the first child node of the element, then you could write a small custom binding to help.
Here is a simple prependText
binding. This would always replace the first child node of the element that contains the binding. So, you would want to ensure that the first node was at least a space.
ko.bindingHandlers.prependText = {
update: function(element, valueAccessor) {
var value = ko.utils.unwrapObservable(valueAccessor());
//replace the first child
element.replaceChild(document.createTextNode(value), element.firstChild);
}
};
Use it like:
<a href="#" data-bind="prependText: name"> <span> another element</span></a>
Sample: http://jsfiddle/rniemeyer/5CfzH/
You can also use KO "containerless" notation
<!-- ko text: YourProperty -->
<!-- /ko-->
The same can be done with other bindings (such as foreach): See Part 4
本文标签: javascriptCombining text and html by KnockoutStack Overflow
版权声明:本文标题:javascript - Combining text and html by Knockout - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743585701a2506394.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论