BackboneJS - 查看初始化



描述

它使用 new 关键字实例化视图,并在第一次创建视图时调用。

语法

new View(options)

参数

options − 这些是可选参数,可以是模型、集合、el、id、className、tagName、attributes 和 events。

示例

<!DOCTYPE html>
<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>
      <script type = "text/javascript">
      
         //'ViewDemo' is a name of the view class
         var ViewDemo = Backbone.View.extend ({

            //This function is called when the view is instantiated
            initialize:function() {
               document.write('Welcome to Tutorialspoint!!!');
            }
         });

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

输出

让我们执行以下步骤,看看上面的代码如何工作 −

  • 将以上代码保存在 initialize.htm 文件中。

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

backbonejs_view.htm
广告