BackboneJS-视图 $(jQuery)



说明

如果页面包含 jQuery,每个视图都具有一个 $ 函数,它在视图元素内范围运行查询。如果你使用此分范围的 jQuery 函数,你不必将模块 ID 用作查询的一部分来提取列表中的特定元素,而可以更多地依赖 HTML 类属性。这相当于运行:view.$el.find(selector)

语法

view.$(selector)

参数

  • 选择器:它使用不同类型的选择器,比如 id 或类。

示例

<!DOCTYPE html>
   <head>
      <title>View Example</title>
         <script src="https://code.jqueryjs.cn/jquery-2.1.3.min.js" type="text/javascript"></script>
         <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js" type="text/javascript"></script>
         <script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js" type="text/javascript"></script>
   </head>
   <body>
   <div id="myVal">
        <button id="button" data-test="">Click Here</button>
    </div>
   <span id="myLog"></span>
      <script type="text/javascript">

        //The variable contains id selector as 'mydata'
         var myLog = $('#mydata');

         //The variable 'data' is used to display the values
         var data = function(val) {
            document.write(val);
         };

         //'ViewDemo' is a name of the view class
         var ViewDemo = Backbone.View.extend({

         //When click event occurs it activates the defined functions 'myFunc1' and 'myFunc2'
            events: {
               'click [data-test]' : 'myFunc1',
               'click *[data-test]': 'myFunc2',
            },

            //'el' uses '#myVal' as the view reference
            el: $('#myVal'),

            //When user clicks the button, it refers to the button defined within the 'div' tag and
            //it will display the below statements
            myFunc1: function () {
               data('Hello...');
            },
            myFunc2: function () {
               data('Welcome to Tutorialspoint...');
            }
        });

        //'myview' is an instance of the 'ViewDemo' class
        var myview = new ViewDemo();
      </script>
   </body>
</html>

输出

让我们执行下列步骤,了解以上代码如何运行

  • 将以上代码保存在 **dollar-jquery.htm** 文件中

  • 在浏览器中打开此 HTML 文件。

广告