<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <script src="js/jquery-1.11.1.min.js"></script>
    <script src="js/knockout-3.3.0.js"></script>
    <script>
        var viewModel = {
            myMessage: ko.observable() 
        };

        var viewModel1 = {
            price: ko.observable(24.95)
        };

        viewModel1.priceRating = ko.pureComputed(function () {
            return this.price() > 50 ? "expensive" : "affordable";
        }, viewModel1);

        $(function () {
            viewModel.myMessage("Hello, world!");
            viewModel1.price(51);
            ko.applyBindings(viewModel, $("#no1")[0]);
            ko.applyBindings(viewModel1, $("#no2")[0]);
        })

    </script>
</head>
<body>
    Today's message is: <span id="no1" data-bind="text: myMessage"></span>
    <br />
    The item is <span id="no2" data-bind="text: priceRating"></span>today.
</body>

 

相关文章:

  • 2022-12-23
  • 2022-02-20
  • 2021-09-13
  • 2021-06-05
  • 2021-09-09
  • 2021-09-03
  • 2022-03-04
猜你喜欢
  • 2022-02-25
  • 2022-02-23
  • 2022-01-03
  • 2021-08-05
  • 2021-05-20
  • 2021-08-14
相关资源
相似解决方案