<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
    <script src="js/knockout-3.4.0.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div data-bind="html:details">
    
</div>
 
<script type="text/javascript">
    var viewModel = {
        details:ko.observable()
    };
    ko.applyBindings(viewModel);
    viewModel.details("<b>For</b> <em>furter details, view the report <a href='#'>a</a></em>")
</script>
</body>
</html>

 

相关文章:

  • 2021-12-12
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2022-12-23
  • 2021-10-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-11
相关资源
相似解决方案