<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Demo6-模板绑定</title> <script type="text/javascript" src="https://sandbox.runjs.cn/uploads/rs/376/pbcx3e1z/knockout-3.4.0.js"></script> </head> <body> <h2>Participants</h2> Here are the participants: <div data-bind="template: { name: 'persontemplate', foreach: people }"></div> <script type="text/html"> <h3 data-bind="text: name"></h3> <p>Age: <span data-bind="text: age"></span></p> </script> <script type="text/javascript"> function MyViewModel() { this.people = [ { name: 'Tommy', age: 27 }, { name: 'Frank', age: 33 } ]; } ko.applyBindings(new MyViewModel()); </script> </body> </html>
关于模板更多的使用参考官方文档:。本文只列出了2中模板的使用。
六、总结
到此,KnockoutJs的快速入门的内容就结束了,在下一篇文章中继续为大家介绍KO内容,下一篇文章的内容将介绍如何使用KO来做一个实际的项目,大家不要错过哦。
您可能感兴趣的文章: