首页 > Web开发 > 详细

Knockout.js CSS绑定

时间:2015-08-17 15:20:00      阅读:143      评论:0      收藏:0      [点我收藏+]
<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>
    <style>
        .b_b
        {
            background-color: blue;
        }
    </style>
    <script type="text/javascript">
        var viewModel = {
            currentProfit: ko.observable(1) // Positive value, so initially we don‘t apply the "bb" class
        };
        $(function () {
            viewModel.currentProfit(-1); // Causes the "bb" class to be applied
            ko.applyBindings(viewModel);
        })
    </script>
</head>
<body>
    <div data-bind="css: { ‘b_b‘: currentProfit() < 0 }">
        Profit Information
    </div>
</body>

 

Knockout.js CSS绑定

原文:http://www.cnblogs.com/YuanSong/p/4736590.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!