码迷,mamicode.com
首页 > Web开发 > 详细

Knockout.js hasFocus

时间:2015-08-17 18:47:34      阅读:122      评论: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>
    <script type="text/javascript">

        function PersonViewModel(name) {
            // Data
            this.name = ko.observable(name);
            this.editing = ko.observable(false);

            // Behaviors
            this.edit = function () { this.editing(true) }
        }

        $(function () {
            ko.applyBindings(new PersonViewModel("Bert Bertington"));
        })
    </script>
</head>
<body>
    <p>
        Name: 
    <b data-bind="visible: !editing(), text: name, click: edit">&nbsp;</b>
        <input data-bind="visible: editing, value: name, hasFocus: editing" />
    </p>
    <p><em>Click the name to edit it; click elsewhere to apply changes.</em></p>
</body>

 

Knockout.js hasFocus

标签:

原文地址:http://www.cnblogs.com/YuanSong/p/4737033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!